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
8328c61a
Commit
8328c61a
authored
Aug 12, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for pSetupGet/SetGlobalFlags.
parent
bcd56fe0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
misc.c
dlls/setupapi/misc.c
+21
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
No files found.
dlls/setupapi/misc.c
View file @
8328c61a
...
...
@@ -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
;
}
dlls/setupapi/setupapi.spec
View file @
8328c61a
...
...
@@ -538,14 +538,14 @@
@ stub pSetupDestroyRunOnceNodeList
@ stub pSetupDirectoryIdToPath
@ stub pSetupGetField
@ st
ub pSetupGetGlobalFlags
@ st
dcall pSetupGetGlobalFlags()
@ stub pSetupGetOsLoaderDriveAndPath
@ stub pSetupGetQueueFlags
@ stub pSetupGetVersionDatum
@ stub pSetupGuidFromString
@ stub pSetupIsGuidNull
@ stub pSetupMakeSurePathExists
@ st
ub pSetupSetGlobalFlags
@ st
dcall pSetupSetGlobalFlags(long)
@ stub pSetupSetQueueFlags
@ stub pSetupSetSystemSourceFlags
@ stub pSetupStringFromGuid
...
...
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