Added stubs for pSetupGet/SetGlobalFlags.
This commit is contained in:
parent
bcd56fe0e5
commit
8328c61a01
|
@ -832,3 +832,24 @@ DWORD WINAPI RetreiveFileSecurity(LPCWSTR lpFileName,
|
|||
|
||||
return dwError;
|
||||
}
|
||||
|
||||
|
||||
static DWORD global_flags = 0; /* FIXME: what should be in here? */
|
||||
|
||||
/***********************************************************************
|
||||
* pSetupGetGlobalFlags (SETUPAPI.@)
|
||||
*/
|
||||
DWORD WINAPI pSetupGetGlobalFlags(void)
|
||||
{
|
||||
FIXME( "stub\n" );
|
||||
return global_flags;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* pSetupSetGlobalFlags (SETUPAPI.@)
|
||||
*/
|
||||
void WINAPI pSetupSetGlobalFlags( DWORD flags )
|
||||
{
|
||||
global_flags = flags;
|
||||
}
|
||||
|
|
|
@ -538,14 +538,14 @@
|
|||
@ stub pSetupDestroyRunOnceNodeList
|
||||
@ stub pSetupDirectoryIdToPath
|
||||
@ stub pSetupGetField
|
||||
@ stub pSetupGetGlobalFlags
|
||||
@ stdcall pSetupGetGlobalFlags()
|
||||
@ stub pSetupGetOsLoaderDriveAndPath
|
||||
@ stub pSetupGetQueueFlags
|
||||
@ stub pSetupGetVersionDatum
|
||||
@ stub pSetupGuidFromString
|
||||
@ stub pSetupIsGuidNull
|
||||
@ stub pSetupMakeSurePathExists
|
||||
@ stub pSetupSetGlobalFlags
|
||||
@ stdcall pSetupSetGlobalFlags(long)
|
||||
@ stub pSetupSetQueueFlags
|
||||
@ stub pSetupSetSystemSourceFlags
|
||||
@ stub pSetupStringFromGuid
|
||||
|
|
Loading…
Reference in New Issue