Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d060160b
Commit
d060160b
authored
May 18, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
May 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Implement pSetup{Get, Set}QueueFlags.
parent
e690916f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
queue.c
dlls/setupapi/queue.c
+19
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
No files found.
dlls/setupapi/queue.c
View file @
d060160b
...
...
@@ -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
;
}
dlls/setupapi/setupapi.spec
View file @
d060160b
...
...
@@ -545,13 +545,13 @@
@ stdcall pSetupGetField(ptr long)
@ stdcall pSetupGetGlobalFlags()
@ stub pSetupGetOsLoaderDriveAndPath
@ st
ub pSetupGetQueueFlags
@ st
dcall pSetupGetQueueFlags(ptr)
@ stub pSetupGetVersionDatum
@ stub pSetupGuidFromString
@ stub pSetupIsGuidNull
@ stub pSetupMakeSurePathExists
@ stdcall pSetupSetGlobalFlags(long)
@ st
ub pSetupSetQueueFlags
@ st
dcall pSetupSetQueueFlags(ptr long)
@ stub pSetupSetSystemSourceFlags
@ stub pSetupStringFromGuid
@ stdcall pSetupStringTableAddString(ptr wstr long) StringTableAddString
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment