Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
bb36e75a
Commit
bb36e75a
authored
May 31, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
May 31, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub implementations of SetupGetNonInteractiveMode and SetupSetNonInteractiveMode.
parent
e1a63fd5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
misc.c
dlls/setupapi/misc.c
+24
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-0
No files found.
dlls/setupapi/misc.c
View file @
bb36e75a
...
...
@@ -1561,3 +1561,27 @@ DWORD WINAPI SetupDecompressOrCopyFileW( PCWSTR source, PCWSTR target, PUINT typ
TRACE
(
"%s -> %s %d
\n
"
,
debugstr_w
(
source
),
debugstr_w
(
target
),
comp
);
return
ret
;
}
static
BOOL
non_interactive_mode
;
/***********************************************************************
* SetupGetNonInteractiveMode (SETUPAPI.@)
*/
BOOL
WINAPI
SetupGetNonInteractiveMode
(
void
)
{
FIXME
(
"
\n
"
);
return
non_interactive_mode
;
}
/***********************************************************************
* SetupSetNonInteractiveMode (SETUPAPI.@)
*/
BOOL
WINAPI
SetupSetNonInteractiveMode
(
BOOL
flag
)
{
BOOL
ret
=
non_interactive_mode
;
FIXME
(
"%d
\n
"
,
flag
);
non_interactive_mode
=
flag
;
return
ret
;
}
dlls/setupapi/setupapi.spec
View file @
bb36e75a
...
...
@@ -426,6 +426,7 @@
@ stdcall SetupGetLineTextW(ptr long wstr wstr ptr long ptr)
@ stdcall SetupGetMultiSzFieldA(ptr long ptr long ptr)
@ stdcall SetupGetMultiSzFieldW(ptr long ptr long ptr)
@ stdcall SetupGetNonInteractiveMode()
@ stdcall SetupGetSourceFileLocationA(ptr ptr str ptr ptr long ptr)
@ stdcall SetupGetSourceFileLocationW(ptr ptr wstr ptr ptr long ptr)
@ stub SetupGetSourceFileSizeA
...
...
@@ -520,6 +521,7 @@
@ stdcall SetupSetFileQueueAlternatePlatformA(ptr ptr str)
@ stdcall SetupSetFileQueueAlternatePlatformW(ptr ptr wstr)
@ stdcall SetupSetFileQueueFlags(long long long)
@ stdcall SetupSetNonInteractiveMode(long)
@ stub SetupSetPlatformPathOverrideA
@ stub SetupSetPlatformPathOverrideW
@ stdcall SetupSetSourceListA(long ptr long)
...
...
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