mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
setupapi: Added stubs for SetupGetInfInformation and
SetupQueryInfFileInformation.
This commit is contained in:
parent
50bbfb3c8c
commit
11fced7b57
@ -401,7 +401,7 @@
|
||||
@ stub SetupGetInfFileListA
|
||||
@ stub SetupGetInfFileListW
|
||||
@ stdcall SetupGetInfInformationA(ptr long ptr long ptr)
|
||||
@ stub SetupGetInfInformationW
|
||||
@ stdcall SetupGetInfInformationW(ptr long ptr long ptr)
|
||||
@ stub SetupGetInfSections
|
||||
@ stdcall SetupGetIntField(ptr long ptr)
|
||||
@ stdcall SetupGetLineByIndexA(long str long ptr)
|
||||
@ -457,8 +457,8 @@
|
||||
@ stub SetupQueryDrivesInDiskSpaceListW
|
||||
@ stub SetupQueryFileLogA
|
||||
@ stub SetupQueryFileLogW
|
||||
@ stub SetupQueryInfFileInformationA
|
||||
@ stub SetupQueryInfFileInformationW
|
||||
@ stdcall SetupQueryInfFileInformationA(ptr long str long ptr)
|
||||
@ stdcall SetupQueryInfFileInformationW(ptr long wstr long ptr)
|
||||
@ stub SetupQueryInfOriginalFileInformationA
|
||||
@ stub SetupQueryInfOriginalFileInformationW
|
||||
@ stub SetupQueryInfVersionInformationA
|
||||
|
@ -162,6 +162,42 @@ BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupGetInfInformationW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupGetInfInformationW( LPCVOID InfSpec, DWORD SearchControl,
|
||||
PSP_INF_INFORMATION ReturnBuffer,
|
||||
DWORD ReturnBufferSize, PDWORD RequiredSize)
|
||||
{
|
||||
FIXME("(%p, %ld, %p, %ld, %p) Stub!\n",
|
||||
InfSpec, SearchControl, ReturnBuffer, ReturnBufferSize, RequiredSize );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupQueryInfFileInformationA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupQueryInfFileInformationA(PSP_INF_INFORMATION InfInformation,
|
||||
UINT InfIndex, PSTR ReturnBuffer,
|
||||
DWORD ReturnBufferSize, PDWORD RequiredSize)
|
||||
{
|
||||
FIXME("(%p, %u, %p, %ld, %p) Stub!\n",
|
||||
InfInformation, InfIndex, ReturnBuffer, ReturnBufferSize, RequiredSize );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupQueryInfFileInformationW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupQueryInfFileInformationW(PSP_INF_INFORMATION InfInformation,
|
||||
UINT InfIndex, PWSTR ReturnBuffer,
|
||||
DWORD ReturnBufferSize, PDWORD RequiredSize)
|
||||
{
|
||||
FIXME("(%p, %u, %p, %ld, %p) Stub!\n",
|
||||
InfInformation, InfIndex, ReturnBuffer, ReturnBufferSize, RequiredSize );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupInitializeFileLogW(SETUPAPI.@)
|
||||
*/
|
||||
|
@ -787,6 +787,9 @@ BOOL WINAPI SetupGetBinaryField( PINFCONTEXT context, DWORD index, BYTE *buf
|
||||
DWORD WINAPI SetupGetFieldCount( PINFCONTEXT context );
|
||||
BOOL WINAPI SetupGetFileQueueCount( HSPFILEQ, UINT, PUINT );
|
||||
BOOL WINAPI SetupGetFileQueueFlags( HSPFILEQ, PDWORD );
|
||||
BOOL WINAPI SetupGetInfInformationA( LPCVOID, DWORD, PSP_INF_INFORMATION, DWORD, PDWORD);
|
||||
BOOL WINAPI SetupGetInfInformationW( LPCVOID, DWORD, PSP_INF_INFORMATION, DWORD, PDWORD);
|
||||
#define SetupGetInfInformation WINELIB_NAME_AW(SetupGetInfInformation)
|
||||
BOOL WINAPI SetupGetIntField( PINFCONTEXT context, DWORD index, PINT result );
|
||||
BOOL WINAPI SetupGetLineByIndexA( HINF, PCSTR, DWORD, INFCONTEXT * );
|
||||
BOOL WINAPI SetupGetLineByIndexW( HINF, PCWSTR, DWORD, INFCONTEXT * );
|
||||
@ -824,6 +827,9 @@ HINF WINAPI SetupOpenInfFileA( PCSTR name, PCSTR pszclass, DWORD style, UINT
|
||||
HINF WINAPI SetupOpenInfFileW( PCWSTR name, PCWSTR pszclass, DWORD style, UINT *error );
|
||||
#define SetupOpenInfFile WINELIB_NAME_AW(SetupOpenInfFile)
|
||||
HINF WINAPI SetupOpenMasterInf( VOID );
|
||||
BOOL WINAPI SetupQueryInfFileInformationA(PSP_INF_INFORMATION, UINT, PSTR, DWORD, PDWORD);
|
||||
BOOL WINAPI SetupQueryInfFileInformationW(PSP_INF_INFORMATION, UINT, PWSTR, DWORD, PDWORD);
|
||||
#define SetupQueryInfFileInformation WINELIB_NAME_AW(SetupQueryInFileInformation)
|
||||
BOOL WINAPI SetupQueueCopyA(HSPFILEQ,PCSTR,PCSTR,PCSTR,PCSTR,PCSTR,PCSTR,PCSTR,DWORD);
|
||||
BOOL WINAPI SetupQueueCopyW(HSPFILEQ,PCWSTR,PCWSTR,PCWSTR,PCWSTR,PCWSTR,PCWSTR,PCWSTR,DWORD);
|
||||
#define SetupQueueCopy WINELIB_NAME_AW(SetupQueueCopy)
|
||||
|
Loading…
Reference in New Issue
Block a user