Fix browseui

svn path=/branches/cmake-bringup/; revision=49884
This commit is contained in:
Timo Kreuzer
2010-12-01 20:11:15 +00:00
parent c843606e23
commit a0e85898c8
3 changed files with 13 additions and 1 deletions
+1
View File
@@ -36,6 +36,7 @@ list(APPEND SOURCE
travellog.cpp
utility.cpp
browseui.rc
dllinstall.c
${CMAKE_CURRENT_BINARY_DIR}/browseui.def)
add_library(browseui SHARED ${SOURCE})
+1 -1
View File
@@ -1,7 +1,7 @@
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllGetVersion(ptr)
@ stub DllInstall
@ stdcall DllInstall(long wstr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
101 stdcall -noname InitOCHostClass(long)
+11
View File
@@ -0,0 +1,11 @@
#include <windows.h>
HRESULT
WINAPI
DllInstall(
BOOL bInstall,
PCWSTR pszCmdLine)
{
return S_OK;
}