mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
setupapi: Implement pSetup{Get, Set}QueueFlags.
This commit is contained in:
parent
e690916f68
commit
d060160b7a
@ -1527,3 +1527,22 @@ UINT WINAPI SetupCopyErrorW( HWND parent, PCWSTR dialogTitle, PCWSTR diskname,
|
||||
w32error, debugstr_w(sourcefile), debugstr_w(sourcepath) ,debugstr_w(targetpath));
|
||||
return DPROMPT_SKIPFILE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* pSetupGetQueueFlags (SETUPAPI.@)
|
||||
*/
|
||||
DWORD WINAPI pSetupGetQueueFlags( HSPFILEQ handle )
|
||||
{
|
||||
struct file_queue *queue = handle;
|
||||
return queue->flags;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* pSetupSetQueueFlags (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI pSetupSetQueueFlags( HSPFILEQ handle, DWORD flags )
|
||||
{
|
||||
struct file_queue *queue = handle;
|
||||
queue->flags = flags;
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -545,13 +545,13 @@
|
||||
@ stdcall pSetupGetField(ptr long)
|
||||
@ stdcall pSetupGetGlobalFlags()
|
||||
@ stub pSetupGetOsLoaderDriveAndPath
|
||||
@ stub pSetupGetQueueFlags
|
||||
@ stdcall pSetupGetQueueFlags(ptr)
|
||||
@ stub pSetupGetVersionDatum
|
||||
@ stub pSetupGuidFromString
|
||||
@ stub pSetupIsGuidNull
|
||||
@ stub pSetupMakeSurePathExists
|
||||
@ stdcall pSetupSetGlobalFlags(long)
|
||||
@ stub pSetupSetQueueFlags
|
||||
@ stdcall pSetupSetQueueFlags(ptr long)
|
||||
@ stub pSetupSetSystemSourceFlags
|
||||
@ stub pSetupStringFromGuid
|
||||
@ stdcall pSetupStringTableAddString(ptr wstr long) StringTableAddString
|
||||
|
Loading…
Reference in New Issue
Block a user