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
c7d4b0c6
Commit
c7d4b0c6
authored
Feb 05, 2010
by
Vitaly Perov
Committed by
Alexandre Julliard
Feb 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub for SetupLogFile{A,W}.
parent
afad45ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
2 deletions
+47
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+45
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
c7d4b0c6
...
...
@@ -456,8 +456,8 @@
@ stdcall SetupIterateCabinetW(wstr long ptr ptr)
@ stub SetupLogErrorA
@ stdcall SetupLogErrorW(wstr long)
@ st
ub SetupLogFileA
@ st
ub SetupLogFileW
@ st
dcall SetupLogFileA(ptr str str str long str str str long)
@ st
dcall SetupLogFileW(ptr wstr wstr wstr long wstr wstr wstr long)
@ stdcall SetupOpenAppendInfFileA(str long ptr)
@ stdcall SetupOpenAppendInfFileW(wstr long ptr)
@ stdcall SetupOpenFileQueue()
...
...
dlls/setupapi/stubs.c
View file @
c7d4b0c6
...
...
@@ -348,3 +348,48 @@ CONFIGRET WINAPI CM_Enumerate_Classes(ULONG index, LPGUID class, ULONG flags)
FIXME
(
"%u %p 0x%08x: stub
\n
"
,
index
,
class
,
flags
);
return
CR_NO_SUCH_VALUE
;
}
/***********************************************************************
* SetupLogFileW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupLogFileW
(
HSPFILELOG
FileLogHandle
,
PCWSTR
LogSectionName
,
PCWSTR
SourceFileName
,
PCWSTR
TargetFileName
,
DWORD
Checksum
,
PCWSTR
DiskTagfile
,
PCWSTR
DiskDescription
,
PCWSTR
OtherInfo
,
DWORD
Flags
)
{
FIXME
(
"(%p, %p, '%s', '%s', %d, %p, %p, %p, %d): stub
\n
"
,
FileLogHandle
,
debugstr_w
(
LogSectionName
),
debugstr_w
(
SourceFileName
),
debugstr_w
(
TargetFileName
),
Checksum
,
debugstr_w
(
DiskTagfile
),
debugstr_w
(
DiskDescription
),
debugstr_w
(
OtherInfo
),
Flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* SetupLogFileA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupLogFileA
(
HSPFILELOG
FileLogHandle
,
PCSTR
LogSectionName
,
PCSTR
SourceFileName
,
PCSTR
TargetFileName
,
DWORD
Checksum
,
PCSTR
DiskTagfile
,
PCSTR
DiskDescription
,
PCSTR
OtherInfo
,
DWORD
Flags
)
{
FIXME
(
"(%p, %p, '%s', '%s', %d, %p, %p, %p, %d): stub
\n
"
,
FileLogHandle
,
LogSectionName
,
SourceFileName
,
TargetFileName
,
Checksum
,
DiskTagfile
,
DiskDescription
,
OtherInfo
,
Flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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