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
521d067b
Commit
521d067b
authored
Jul 10, 2005
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Jul 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SetupSetFileQueueAlternatePlatform{AW} implemented as stub.
parent
1b578af4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
queue.c
dlls/setupapi/queue.c
+20
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
No files found.
dlls/setupapi/queue.c
View file @
521d067b
...
...
@@ -1268,6 +1268,26 @@ BOOL WINAPI SetupSetFileQueueFlags( HSPFILEQ handle, DWORD mask, DWORD flags )
/***********************************************************************
* SetupSetFileQueueAlternatePlatformA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupSetFileQueueAlternatePlatformA
(
HSPFILEQ
handle
,
PSP_ALTPLATFORM_INFO
platform
,
PCSTR
catalogfile
)
{
FIXME
(
"(%p, %p, %s) stub!
\n
"
,
handle
,
platform
,
debugstr_a
(
catalogfile
));
return
FALSE
;
}
/***********************************************************************
* SetupSetFileQueueAlternatePlatformW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupSetFileQueueAlternatePlatformW
(
HSPFILEQ
handle
,
PSP_ALTPLATFORM_INFO
platform
,
PCWSTR
catalogfile
)
{
FIXME
(
"(%p, %p, %s) stub!
\n
"
,
handle
,
platform
,
debugstr_w
(
catalogfile
));
return
FALSE
;
}
/***********************************************************************
* SetupInitDefaultQueueCallback (SETUPAPI.@)
*/
PVOID
WINAPI
SetupInitDefaultQueueCallback
(
HWND
owner
)
...
...
dlls/setupapi/setupapi.spec
View file @
521d067b
...
...
@@ -383,8 +383,6 @@
@ stub SetupDiUnremoveDevice
@ stub SetupDuplicateDiskSpaceListA
@ stub SetupDuplicateDiskSpaceListW
@ stub SetupFileQueueAlternatePlatformA
@ stub SetupFileQueueAlternatePlatformW
@ stdcall SetupFindFirstLineA(long str str ptr)
@ stdcall SetupFindFirstLineW(long wstr wstr ptr)
@ stdcall SetupFindNextLine(ptr ptr)
...
...
@@ -504,6 +502,8 @@
@ stub SetupSetDirectoryIdExA
@ stub SetupSetDirectoryIdExW
@ stdcall SetupSetDirectoryIdW(long long wstr)
@ stdcall SetupSetFileQueueAlternatePlatformA(ptr ptr str)
@ stdcall SetupSetFileQueueAlternatePlatformW(ptr ptr wstr)
@ stdcall SetupSetFileQueueFlags(long long long)
@ stub SetupSetPlatformPathOverrideA
@ stub SetupSetPlatformPathOverrideW
...
...
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