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
b905023c
Commit
b905023c
authored
May 11, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
May 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some debug messages.
parent
5ca73ac9
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
15 deletions
+16
-15
access.c
dlls/imagehlp/access.c
+1
-1
integrity.c
dlls/imagehlp/integrity.c
+1
-1
symbol.c
dlls/imagehlp/symbol.c
+3
-3
brsfolder.c
dlls/shell32/brsfolder.c
+1
-1
shellord.c
dlls/shell32/shellord.c
+2
-2
line.c
dlls/tapi32/line.c
+5
-4
phone.c
dlls/tapi32/phone.c
+2
-2
driver.c
windows/driver.c
+1
-1
No files found.
dlls/imagehlp/access.c
View file @
b905023c
...
...
@@ -95,7 +95,7 @@ DWORD WINAPI GetImageUnusedHeaderBytes(
PVOID
WINAPI
ImageDirectoryEntryToData
(
PVOID
Base
,
BOOLEAN
MappedAsImage
,
USHORT
DirectoryEntry
,
PULONG
Size
)
{
FIXME
(
"(%p, %d, %d, %p): stub
\n
"
,
FIXME
(
"(%p, %d, %
h
d, %p): stub
\n
"
,
Base
,
MappedAsImage
,
DirectoryEntry
,
Size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/imagehlp/integrity.c
View file @
b905023c
...
...
@@ -75,7 +75,7 @@ BOOL WINAPI ImageGetDigestStream(
HANDLE
FileHandle
,
DWORD
DigestLevel
,
DIGEST_FUNCTION
DigestFunction
,
DIGEST_HANDLE
DigestHandle
)
{
FIXME
(
"(
%0x
08x, %ld, %p, %p): stub
\n
"
,
FIXME
(
"(
0x%
08x, %ld, %p, %p): stub
\n
"
,
FileHandle
,
DigestLevel
,
DigestFunction
,
DigestHandle
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/imagehlp/symbol.c
View file @
b905023c
...
...
@@ -44,8 +44,8 @@ BOOL WINAPI SymEnumerateSymbols(
HANDLE
hProcess
,
DWORD
BaseOfDll
,
PSYM_ENUMSYMBOLS_CALLBACK
EnumSymbolsCallback
,
PVOID
UserContext
)
{
FIXME
(
"(0x%08x, %p, %p): stub
\n
"
,
hProcess
,
EnumSymbolsCallback
,
UserContext
FIXME
(
"(0x%08x,
0x%08lx,
%p, %p): stub
\n
"
,
hProcess
,
BaseOfDll
,
EnumSymbolsCallback
,
UserContext
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
...
...
@@ -204,7 +204,7 @@ BOOL WINAPI SymRegisterCallback(
*/
DWORD
WINAPI
SymSetOptions
(
DWORD
SymOptions
)
{
FIXME
(
"(
%
lx): stub
\n
"
,
SymOptions
);
FIXME
(
"(
0x%08
lx): stub
\n
"
,
SymOptions
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
...
...
dlls/shell32/brsfolder.c
View file @
b905023c
...
...
@@ -275,7 +275,7 @@ static BOOL WINAPI BrsFolderDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
*/
LPITEMIDLIST
WINAPI
SHBrowseForFolderA
(
LPBROWSEINFOA
lpbi
)
{
TRACE
(
"(%
lx,%s) empty stub!
\n
"
,
(
DWORD
)
lpbi
,
lpbi
->
lpszTitle
);
TRACE
(
"(%
p{lpszTitle=%s})
\n
"
,
lpbi
,
debugstr_a
(
lpbi
->
lpszTitle
)
);
return
(
LPITEMIDLIST
)
DialogBoxParamA
(
shell32_hInstance
,
"SHBRSFORFOLDER_MSGBOX"
,
lpbi
->
hwndOwner
,
...
...
dlls/shell32/shellord.c
View file @
b905023c
...
...
@@ -1340,7 +1340,7 @@ HRESULT WINAPI SHValidateUNC (DWORD x, DWORD y, DWORD z)
*/
HRESULT
WINAPI
DoEnvironmentSubstA
(
LPSTR
x
,
LPSTR
y
)
{
FIXME
(
"(%
p %s, %p %s) stub
\n
"
,
x
,
debugstr_a
(
x
),
y
,
debugstr_a
(
y
));
FIXME
(
"(%
s, %s) stub
\n
"
,
debugstr_a
(
x
)
,
debugstr_a
(
y
));
return
0
;
}
...
...
@@ -1350,7 +1350,7 @@ HRESULT WINAPI DoEnvironmentSubstA(LPSTR x, LPSTR y)
*/
HRESULT
WINAPI
DoEnvironmentSubstW
(
LPWSTR
x
,
LPWSTR
y
)
{
FIXME
(
"(%
p %s, %p %s) stub
\n
"
,
x
,
debugstr_w
(
x
),
y
,
debugstr_w
(
y
));
FIXME
(
"(%
s, %s): stub
\n
"
,
debugstr_w
(
x
)
,
debugstr_w
(
y
));
return
0
;
}
...
...
dlls/tapi32/line.c
View file @
b905023c
...
...
@@ -393,7 +393,8 @@ DWORD WINAPI lineInitialize(
LPCSTR
lpszAppName
,
LPDWORD
lpdwNumDevs
)
{
FIXME
(
"(...): stub.
\n
"
);
FIXME
(
"(%p, %04x, %p, %s, %p): stub.
\n
"
,
lphLineApp
,
hInstance
,
lpfnCallback
,
debugstr_a
(
lpszAppName
),
lpdwNumDevs
);
return
0
;
}
...
...
@@ -445,8 +446,8 @@ DWORD WINAPI lineNegotiateAPIVersion(
LPLINEEXTENSIONID
lpExtensionID
)
{
FIXME
(
"(%
4x, %ld, %ld, %ld, ...
): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPILowVersion
,
dwAPIHighVersion
);
FIXME
(
"(%
04x, %ld, %ld, %ld, %p, %p
): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPILowVersion
,
dwAPIHighVersion
,
lpdwAPIVersion
,
lpExtensionID
);
*
lpdwAPIVersion
=
dwAPIHighVersion
;
return
0
;
}
...
...
@@ -612,7 +613,7 @@ DWORD WINAPI lineSetCurrentLocation(HLINEAPP hLineApp, DWORD dwLocation)
*/
DWORD
WINAPI
lineSetDevConfig
(
DWORD
dwDeviceID
,
LPVOID
lpDeviceConfig
,
DWORD
dwSize
,
LPCSTR
lpszDeviceClass
)
{
FIXME
(
"(%0lx, %p, %08lx, %s): stub.
\n
"
,
dwDeviceID
,
lpDeviceConfig
,
dwSize
,
lpszDeviceClass
);
FIXME
(
"(%0
8
lx, %p, %08lx, %s): stub.
\n
"
,
dwDeviceID
,
lpDeviceConfig
,
dwSize
,
lpszDeviceClass
);
return
0
;
}
...
...
dlls/tapi32/phone.c
View file @
b905023c
...
...
@@ -258,7 +258,7 @@ DWORD WINAPI phoneSetLamp(HPHONE hPhone, DWORD dwButtonLampID, DWORD lpdwLampMod
*/
DWORD
WINAPI
phoneSetRing
(
HPHONE
hPhone
,
DWORD
dwRingMode
,
DWORD
dwVolume
)
{
FIXME
(
"(%04x, %08lx, %08l
d
): stub.
\n
"
,
hPhone
,
dwRingMode
,
dwVolume
);
FIXME
(
"(%04x, %08lx, %08l
x
): stub.
\n
"
,
hPhone
,
dwRingMode
,
dwVolume
);
return
1
;
}
...
...
@@ -276,7 +276,7 @@ DWORD WINAPI phoneSetStatusMessages(HPHONE hPhone, DWORD dwPhoneStates, DWORD dw
*/
DWORD
WINAPI
phoneSetVolume
(
HPHONE
hPhone
,
DWORD
dwHookSwitchDev
,
DWORD
dwVolume
)
{
FIXME
(
"(%04x, %08lx, %08l
d
): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
dwVolume
);
FIXME
(
"(%04x, %08lx, %08l
x
): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
dwVolume
);
return
1
;
}
...
...
windows/driver.c
View file @
b905023c
...
...
@@ -831,7 +831,7 @@ HDRVR WINAPI OpenDriverA(LPCSTR lpDriverName, LPCSTR lpSectionName, LPARAM lPara
HDRVR
hDriver
=
0
;
char
drvName
[
128
];
TRACE
(
"(
'%s', '%s', %08lX);
\n
"
,
lpDriverName
,
lpSectionName
,
lParam
);
TRACE
(
"(
%s, %s, 0x%08lx);
\n
"
,
debugstr_a
(
lpDriverName
),
debugstr_a
(
lpSectionName
)
,
lParam
);
if
(
lpSectionName
==
NULL
)
{
lstrcpynA
(
drvName
,
lpDriverName
,
sizeof
(
drvName
));
...
...
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