Added some stubs.

This commit is contained in:
Christian Costa 2004-02-17 21:05:44 +00:00 committed by Alexandre Julliard
parent 0fd8e51365
commit fabcd27800
5 changed files with 25 additions and 2 deletions

View file

@ -834,3 +834,9 @@ BOOL WINAPI MSI_DllCanUnloadNow(void)
{
return FALSE;
}
HRESULT WINAPI MSI_DllRegisterServer(void)
{
FIXME("Stub!\n");
return S_OK;
}

View file

@ -1,6 +1,6 @@
1 stdcall DllCanUnloadNow() MSI_DllCanUnloadNow
2 stub DllGetClassObject
3 stub DllRegisterServer
3 stdcall -private DllRegisterServer() MSI_DllRegisterServer
4 stub DllUnregisterServer
5 stdcall MsiAdvertiseProductA(str str str long)
6 stdcall MsiAdvertiseProductW(wstr wstr wstr long)

View file

@ -195,7 +195,7 @@
@ stdcall SetupGetFileQueueFlags(long ptr)
@ stub SetupGetInfFileListA
@ stub SetupGetInfFileListW
@ stub SetupGetInfInformationA
@ stdcall SetupGetInfInformationA(ptr long ptr long ptr)
@ stub SetupGetInfInformationW
@ stdcall SetupGetIntField(ptr long ptr)
@ stdcall SetupGetLineByIndexA(long str long ptr)

View file

@ -195,3 +195,14 @@ void WINAPI InstallHinfSection(HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT
{
FIXME("stub, hwnd %p, handle %p, cmdline %s\n", hwnd, handle, debugstr_a(cmdline));
}
/***********************************************************************
* SetupGetInfInformationA (SETUPAPI.@)
*/
BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl,
PSP_INF_INFORMATION ReturnBuffer,
DWORD ReturnBufferSize, PDWORD RequiredSize)
{
FIXME("(%p, %d, %p, %d, %p) Stub!\n");
return TRUE;
}

View file

@ -219,6 +219,12 @@ typedef struct _CABINET_INFO_W {
DECL_WINELIB_SETUPAPI_TYPE_AW(CABINET_INFO);
DECL_WINELIB_SETUPAPI_TYPE_AW(PCABINET_INFO);
typedef struct _SP_INF_INFORMATION {
DWORD InfStyle;
DWORD InfCount;
BYTE VersionData[ANYSIZE_ARRAY];
} SP_INF_INFORMATION, *PSP_INF_INFORMATION;
#define INF_STYLE_NONE 0x00
#define INF_STYLE_OLDNT 0x01
#define INF_STYLE_WIN4 0x02