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
9fe7a254
Commit
9fe7a254
authored
May 14, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted to the new debug interface, using script written by Patrik
Stridvall.
parent
ded196cb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
416 additions
and
419 deletions
+416
-419
generic.c
console/generic.c
+5
-5
ncurses.c
console/ncurses.c
+7
-7
xterm.c
console/xterm.c
+3
-3
combo.c
controls/combo.c
+21
-21
listbox.c
controls/listbox.c
+22
-22
menu.c
controls/menu.c
+0
-0
scroll.c
controls/scroll.c
+11
-11
static.c
controls/static.c
+7
-7
uitools.c
controls/uitools.c
+7
-7
advapi.c
dlls/advapi32/advapi.c
+1
-1
crypt.c
dlls/advapi32/crypt.c
+2
-2
eventlog.c
dlls/advapi32/eventlog.c
+19
-19
service.c
dlls/advapi32/service.c
+23
-23
access.c
dlls/imagehlp/access.c
+12
-12
debug.c
dlls/imagehlp/debug.c
+7
-7
imagehlp_main.c
dlls/imagehlp/imagehlp_main.c
+4
-4
integrity.c
dlls/imagehlp/integrity.c
+7
-7
internal.c
dlls/imagehlp/internal.c
+1
-1
modify.c
dlls/imagehlp/modify.c
+11
-11
symbol.c
dlls/imagehlp/symbol.c
+20
-20
msacm_main.c
dlls/msacm/msacm_main.c
+30
-30
builtin.c
dlls/msacm32/builtin.c
+1
-1
driver.c
dlls/msacm32/driver.c
+5
-5
filter.c
dlls/msacm32/filter.c
+9
-9
format.c
dlls/msacm32/format.c
+10
-10
internal.c
dlls/msacm32/internal.c
+1
-1
msacm32_main.c
dlls/msacm32/msacm32_main.c
+3
-3
stream.c
dlls/msacm32/stream.c
+9
-9
psapi_main.c
dlls/psapi/psapi_main.c
+19
-19
rasapi.c
dlls/rasapi32/rasapi.c
+2
-2
assisted.c
dlls/tapi32/assisted.c
+3
-3
phone.c
dlls/tapi32/phone.c
+31
-31
ver16.c
dlls/ver/ver16.c
+5
-5
info.c
dlls/version/info.c
+24
-24
install.c
dlls/version/install.c
+16
-16
resource.c
dlls/version/resource.c
+13
-13
dde_atom.c
ipc/dde_atom.c
+7
-7
dde_atom_test.c
ipc/dde_atom_test.c
+1
-1
shm_block.c
ipc/shm_block.c
+3
-4
shm_fragment.c
ipc/shm_fragment.c
+1
-1
shm_fragment_test.c
ipc/shm_fragment_test.c
+1
-1
shm_main_blk.c
ipc/shm_main_blk.c
+14
-15
shm_semaph.c
ipc/shm_semaph.c
+9
-10
shm_semaph_test.c
ipc/shm_semaph_test.c
+1
-1
wine_test_stub.c
ipc/wine_test_stub.c
+1
-1
snoop.c
relay32/snoop.c
+4
-4
utthunk.c
relay32/utthunk.c
+3
-3
No files found.
console/generic.c
View file @
9fe7a254
...
...
@@ -14,7 +14,7 @@
#include "console.h"
#include "config.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
console
)
...
...
@@ -26,7 +26,7 @@ void GENERIC_Start()
/* Here, we only want to add a driver if there is not one already
defined. */
TRACE
(
console
,
"GENERIC_Start
\n
"
);
TRACE
(
"GENERIC_Start
\n
"
);
if
(
!
driver
.
clearWindow
)
driver
.
clearWindow
=
GENERIC_ClearWindow
;
...
...
@@ -72,7 +72,7 @@ void GENERIC_ScrollUpWindow(char row1, char col1, char row2, char col2,
char
trow
,
tcol
;
int
old_refresh
,
x
;
TRACE
(
console
,
"Scroll Up %d lines from %d to %d.
\n
"
,
lines
,
row1
,
TRACE
(
"Scroll Up %d lines from %d to %d.
\n
"
,
lines
,
row1
,
row2
);
/* Abort if we have only partial functionality */
...
...
@@ -146,7 +146,7 @@ static void GENERIC_ClearLine(char row, char col1, char col2, int bgcolor,
int
x
;
TRACE
(
console
,
"Clear Line: %d from %d to %d.
\n
"
,
row
,
col1
,
col2
);
TRACE
(
"Clear Line: %d from %d to %d.
\n
"
,
row
,
col1
,
col2
);
for
(
x
=
col1
;
x
<=
col2
;
x
++
)
{
...
...
@@ -169,7 +169,7 @@ static void GENERIC_MoveLine(char row1, char row2, char col1, char col2)
int
bg_color
,
fg_color
,
attribute
;
char
ch
;
TRACE
(
console
,
"Move Line: Move %d to %d.
\n
"
,
row1
,
row2
);
TRACE
(
"Move Line: Move %d to %d.
\n
"
,
row1
,
row2
);
for
(
x
=
col1
;
x
<=
col2
;
x
++
)
{
...
...
console/ncurses.c
View file @
9fe7a254
...
...
@@ -21,7 +21,7 @@
driver, it should make sure to perserve the old values.
*/
#include "debug.h"
#include "debug
tools
.h"
#include "options.h"
DEFAULT_DEBUG_CHANNEL
(
console
)
...
...
@@ -107,7 +107,7 @@ void NCURSES_Write(char output, int fg, int bg, int attribute)
if
(
waddch
(
stdscr
,
output
|
COLOR_PAIR
(
pair
))
==
ERR
)
{
NCURSES_GetCursorPosition
(
&
row
,
&
col
);
FIXME
(
console
,
"NCURSES: waddch() failed at %d, %d.
\n
"
,
row
,
col
);
FIXME
(
"NCURSES: waddch() failed at %d, %d.
\n
"
,
row
,
col
);
}
}
...
...
@@ -148,7 +148,7 @@ int NCURSES_CheckForKeystroke(char *scan, char *ascii)
void
NCURSES_MoveCursor
(
char
row
,
char
col
)
{
if
(
wmove
(
stdscr
,
row
,
col
)
==
ERR
)
FIXME
(
console
,
"NCURSES: wmove() failed to %d, %d.
\n
"
,
row
,
col
);
FIXME
(
"NCURSES: wmove() failed to %d, %d.
\n
"
,
row
,
col
);
}
void
NCURSES_GetCursorPosition
(
char
*
row
,
char
*
col
)
...
...
@@ -201,7 +201,7 @@ int NCURSES_AllocColor(int color)
case
WINE_CYAN
:
return
COLOR_CYAN
;
}
FIXME
(
console
,
"Unable to allocate color %d (%s)
\n
"
,
color
,
FIXME
(
"Unable to allocate color %d (%s)
\n
"
,
color
,
color_names
[
color
]);
/* Don't allocate a color... yet */
...
...
@@ -242,7 +242,7 @@ void NCURSES_NotifyResizeScreen(int x, int y)
calls ResizeScreen(). It is meant to resize the ncurses internal
data structures to know about the new window dimensions. */
TRACE
(
console
,
"Terminal resized to y: %d, x: %d
\n
"
,
y
,
x
);
TRACE
(
"Terminal resized to y: %d, x: %d
\n
"
,
y
,
x
);
resizeterm
(
y
,
x
);
}
...
...
@@ -267,7 +267,7 @@ static int get_color_pair(int fg_color, int bg_color)
{
if
((
fg_color
==
fg
[
x
])
&&
(
bg_color
==
bg
[
x
]))
{
TRACE
(
console
,
"Color pair: already allocated
\n
"
);
TRACE
(
"Color pair: already allocated
\n
"
);
return
x
;
}
}
...
...
@@ -276,7 +276,7 @@ static int get_color_pair(int fg_color, int bg_color)
current
++
;
fg
[
current
]
=
fg_color
;
bg
[
current
]
=
bg_color
;
TRACE
(
console
,
"Color pair: allocated.
\n
"
);
TRACE
(
"Color pair: allocated.
\n
"
);
return
init_pair
(
current
,
fg_color
,
bg_color
);
}
...
...
console/xterm.c
View file @
9fe7a254
...
...
@@ -19,7 +19,7 @@
#include "console.h"
#include "options.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
console
)
...
...
@@ -139,7 +139,7 @@ static BOOL wine_create_console(FILE **master, FILE **slave, int *pid)
execlp
(
console_xterm_prog
,
console_xterm_prog
,
buf
,
"-fg"
,
"white"
,
"-bg"
,
"black"
,
"-g"
,
xterm_resolution
,
NULL
);
ERR
(
console
,
"error creating xterm (file not found?)
\n
"
);
ERR
(
"error creating xterm (file not found?)
\n
"
);
exit
(
1
);
}
...
...
@@ -155,7 +155,7 @@ static BOOL wine_create_console(FILE **master, FILE **slave, int *pid)
usleep
(
100
);
}
if
(
i
>
10000
)
{
WARN
(
console
,
"can't read xterm WID
\n
"
);
WARN
(
"can't read xterm WID
\n
"
);
kill
(
*
pid
,
SIGKILL
);
return
FALSE
;
}
...
...
controls/combo.c
View file @
9fe7a254
...
...
@@ -17,7 +17,7 @@
#include "heap.h"
#include "combo.h"
#include "drive.h"
#include "debug.h"
#include "debug
tools
.h"
#include "tweak.h"
DEFAULT_DEBUG_CHANNEL
(
combo
)
...
...
@@ -74,7 +74,7 @@ static BOOL COMBO_Init()
CBitHeight
=
bm
.
bmHeight
;
CBitWidth
=
bm
.
bmWidth
;
TRACE
(
combo
,
"combo bitmap [%i,%i]
\n
"
,
CBitWidth
,
CBitHeight
);
TRACE
(
"combo bitmap [%i,%i]
\n
"
,
CBitWidth
,
CBitHeight
);
hPrevB
=
SelectObject16
(
hDC
,
hComboBmp
);
SetRect
(
&
r
,
0
,
0
,
CBitWidth
,
CBitHeight
);
...
...
@@ -119,7 +119,7 @@ static LRESULT COMBO_NCCreate(WND* wnd, LPARAM lParam)
if
(
!
(
wnd
->
dwExStyle
&
WS_EX_NOPARENTNOTIFY
)
)
lphc
->
wState
|=
CBF_NOTIFY
;
TRACE
(
combo
,
"[0x%08x], style = %08x
\n
"
,
TRACE
(
"[0x%08x], style = %08x
\n
"
,
(
UINT
)
lphc
,
lphc
->
dwStyle
);
return
(
LRESULT
)(
UINT
)
wnd
->
hwndSelf
;
...
...
@@ -137,7 +137,7 @@ static LRESULT COMBO_NCDestroy( LPHEADCOMBO lphc )
{
WND
*
wnd
=
lphc
->
self
;
TRACE
(
combo
,
"[%04x]: freeing storage
\n
"
,
CB_HWND
(
lphc
));
TRACE
(
"[%04x]: freeing storage
\n
"
,
CB_HWND
(
lphc
));
if
(
(
CB_GETTYPE
(
lphc
)
!=
CBS_SIMPLE
)
&&
lphc
->
hWndLBox
)
DestroyWindow
(
lphc
->
hWndLBox
);
...
...
@@ -388,13 +388,13 @@ static void CBCalcPlacement(
lprLB
->
right
=
lprLB
->
left
+
lphc
->
droppedWidth
;
}
TRACE
(
combo
,
"
\t
text
\t
= (%i,%i-%i,%i)
\n
"
,
TRACE
(
"
\t
text
\t
= (%i,%i-%i,%i)
\n
"
,
lprEdit
->
left
,
lprEdit
->
top
,
lprEdit
->
right
,
lprEdit
->
bottom
);
TRACE
(
combo
,
"
\t
button
\t
= (%i,%i-%i,%i)
\n
"
,
TRACE
(
"
\t
button
\t
= (%i,%i-%i,%i)
\n
"
,
lprButton
->
left
,
lprButton
->
top
,
lprButton
->
right
,
lprButton
->
bottom
);
TRACE
(
combo
,
"
\t
lbox
\t
= (%i,%i-%i,%i)
\n
"
,
TRACE
(
"
\t
lbox
\t
= (%i,%i-%i,%i)
\n
"
,
lprLB
->
left
,
lprLB
->
top
,
lprLB
->
right
,
lprLB
->
bottom
);
}
...
...
@@ -597,12 +597,12 @@ static LRESULT COMBO_Create( LPHEADCOMBO lphc, WND* wnd, LPARAM lParam)
CBForceDummyResize
(
lphc
);
}
TRACE
(
combo
,
"init done
\n
"
);
TRACE
(
"init done
\n
"
);
return
wnd
->
hwndSelf
;
}
ERR
(
combo
,
"edit control failure.
\n
"
);
}
else
ERR
(
combo
,
"listbox failure.
\n
"
);
}
else
ERR
(
combo
,
"no owner for visible combo.
\n
"
);
ERR
(
"edit control failure.
\n
"
);
}
else
ERR
(
"listbox failure.
\n
"
);
}
else
ERR
(
"no owner for visible combo.
\n
"
);
/* CreateWindow() will send WM_NCDESTROY to cleanup */
...
...
@@ -970,7 +970,7 @@ static INT CBUpdateLBox( LPHEADCOMBO lphc )
if
(
length
>
0
)
pText
=
(
LPSTR
)
HeapAlloc
(
GetProcessHeap
(),
0
,
length
+
1
);
TRACE
(
combo
,
"
\t
edit text length %i
\n
"
,
length
);
TRACE
(
"
\t
edit text length %i
\n
"
,
length
);
if
(
pText
)
{
...
...
@@ -1006,7 +1006,7 @@ static void CBUpdateEdit( LPHEADCOMBO lphc , INT index )
INT
length
;
LPSTR
pText
=
NULL
;
TRACE
(
combo
,
"
\t
%i
\n
"
,
index
);
TRACE
(
"
\t
%i
\n
"
,
index
);
if
(
index
==
-
1
)
{
...
...
@@ -1050,7 +1050,7 @@ static void CBDropDown( LPHEADCOMBO lphc )
INT
index
;
RECT
rect
;
TRACE
(
combo
,
"[%04x]: drop down
\n
"
,
CB_HWND
(
lphc
));
TRACE
(
"[%04x]: drop down
\n
"
,
CB_HWND
(
lphc
));
CB_NOTIFY
(
lphc
,
CBN_DROPDOWN
);
...
...
@@ -1106,7 +1106,7 @@ static void CBRollUp( LPHEADCOMBO lphc, BOOL ok, BOOL bButton )
if
(
IsWindow
(
hWnd
)
&&
CB_GETTYPE
(
lphc
)
!=
CBS_SIMPLE
)
{
TRACE
(
combo
,
"[%04x]: roll up [%i]
\n
"
,
CB_HWND
(
lphc
),
(
INT
)
ok
);
TRACE
(
"[%04x]: roll up [%i]
\n
"
,
CB_HWND
(
lphc
),
(
INT
)
ok
);
/* always send WM_LBUTTONUP? */
SendMessageA
(
lphc
->
hWndLBox
,
WM_LBUTTONUP
,
0
,
(
LPARAM
)(
-
1
)
);
...
...
@@ -1252,7 +1252,7 @@ static LRESULT COMBO_Command( LPHEADCOMBO lphc, WPARAM wParam, HWND hWnd )
{
case
(
EN_SETFOCUS
>>
8
):
TRACE
(
combo
,
"[%04x]: edit [%04x] got focus
\n
"
,
TRACE
(
"[%04x]: edit [%04x] got focus
\n
"
,
CB_HWND
(
lphc
),
lphc
->
hWndEdit
);
if
(
!
(
lphc
->
wState
&
CBF_FOCUSED
)
)
COMBO_SetFocus
(
lphc
);
...
...
@@ -1260,7 +1260,7 @@ static LRESULT COMBO_Command( LPHEADCOMBO lphc, WPARAM wParam, HWND hWnd )
case
(
EN_KILLFOCUS
>>
8
):
TRACE
(
combo
,
"[%04x]: edit [%04x] lost focus
\n
"
,
TRACE
(
"[%04x]: edit [%04x] lost focus
\n
"
,
CB_HWND
(
lphc
),
lphc
->
hWndEdit
);
/* NOTE: it seems that Windows' edit control sends an
...
...
@@ -1301,7 +1301,7 @@ static LRESULT COMBO_Command( LPHEADCOMBO lphc, WPARAM wParam, HWND hWnd )
case
LBN_SELCHANGE
:
case
LBN_SELCANCEL
:
TRACE
(
combo
,
"[%04x]: lbox selection change [%04x]
\n
"
,
TRACE
(
"[%04x]: lbox selection change [%04x]
\n
"
,
CB_HWND
(
lphc
),
lphc
->
wState
);
/* do not roll up if selection is being tracked
...
...
@@ -1335,7 +1335,7 @@ static LRESULT COMBO_ItemOp( LPHEADCOMBO lphc, UINT msg,
{
HWND
hWnd
=
lphc
->
self
->
hwndSelf
;
TRACE
(
combo
,
"[%04x]: ownerdraw op %04x
\n
"
,
CB_HWND
(
lphc
),
msg
);
TRACE
(
"[%04x]: ownerdraw op %04x
\n
"
,
CB_HWND
(
lphc
),
msg
);
#define lpIS ((LPDELETEITEMSTRUCT)lParam)
...
...
@@ -1690,7 +1690,7 @@ static inline LRESULT WINAPI ComboWndProc_locked( WND* pWnd, UINT message,
LPHEADCOMBO
lphc
=
CB_GETPTR
(
pWnd
);
HWND
hwnd
=
pWnd
->
hwndSelf
;
TRACE
(
combo
,
"[%04x]: msg %s wp %08x lp %08lx
\n
"
,
TRACE
(
"[%04x]: msg %s wp %08x lp %08lx
\n
"
,
pWnd
->
hwndSelf
,
SPY_GetMsgName
(
message
),
wParam
,
lParam
);
if
(
lphc
||
message
==
WM_NCCREATE
)
...
...
@@ -1964,7 +1964,7 @@ static inline LRESULT WINAPI ComboWndProc_locked( WND* pWnd, UINT message,
case
CB_GETEXTENDEDUI
:
return
(
lphc
->
wState
&
CBF_EUI
)
?
TRUE
:
FALSE
;
case
(
WM_USER
+
0x1B
):
WARN
(
combo
,
"[%04x]: undocumented msg!
\n
"
,
hwnd
);
WARN
(
"[%04x]: undocumented msg!
\n
"
,
hwnd
);
}
return
DefWindowProcA
(
hwnd
,
message
,
wParam
,
lParam
);
}
...
...
controls/listbox.c
View file @
9fe7a254
...
...
@@ -17,8 +17,8 @@
#include "debugtools.h"
#include "tweak.h"
DEFAULT_DEBUG_CHANNEL
(
listbox
)
DECLARE_DEBUG_CHANNEL
(
combo
)
DECLARE_DEBUG_CHANNEL
(
listbox
)
/* Unimplemented yet:
* - LBS_NOSEL
...
...
@@ -106,13 +106,13 @@ void LISTBOX_Dump( WND *wnd )
LB_ITEMDATA
*
item
;
LB_DESCR
*
descr
=
*
(
LB_DESCR
**
)
wnd
->
wExtra
;
TRACE
_
(
listbox
)
(
"Listbox:
\n
"
);
TRACE
_
(
listbox
)
(
"hwnd=%04x descr=%08x heap=%08x items=%d top=%d
\n
"
,
TRACE
(
"Listbox:
\n
"
);
TRACE
(
"hwnd=%04x descr=%08x heap=%08x items=%d top=%d
\n
"
,
wnd
->
hwndSelf
,
(
UINT
)
descr
,
descr
->
heap
,
descr
->
nb_items
,
descr
->
top_item
);
for
(
i
=
0
,
item
=
descr
->
items
;
i
<
descr
->
nb_items
;
i
++
,
item
++
)
{
TRACE
_
(
listbox
)
(
"%4d: %-40s %d %08lx %3d
\n
"
,
TRACE
(
"%4d: %-40s %d %08lx %3d
\n
"
,
i
,
item
->
str
,
item
->
selected
,
item
->
data
,
item
->
height
);
}
}
...
...
@@ -324,7 +324,7 @@ static void LISTBOX_UpdateSize( WND *wnd, LB_DESCR *descr )
if
((
descr
->
height
>
descr
->
item_height
)
&&
(
descr
->
height
%
descr
->
item_height
))
{
TRACE
_
(
listbox
)
(
"[%04x]: changing height %d -> %d
\n
"
,
TRACE
(
"[%04x]: changing height %d -> %d
\n
"
,
wnd
->
hwndSelf
,
descr
->
height
,
descr
->
height
-
descr
->
height
%
descr
->
item_height
);
SetWindowPos
(
wnd
->
hwndSelf
,
0
,
0
,
0
,
...
...
@@ -335,7 +335,7 @@ static void LISTBOX_UpdateSize( WND *wnd, LB_DESCR *descr )
return
;
}
}
TRACE
_
(
listbox
)
(
"[%04x]: new size = %d,%d
\n
"
,
TRACE
(
"[%04x]: new size = %d,%d
\n
"
,
wnd
->
hwndSelf
,
descr
->
width
,
descr
->
height
);
LISTBOX_UpdatePage
(
wnd
,
descr
);
LISTBOX_UpdateScroll
(
wnd
,
descr
);
...
...
@@ -464,7 +464,7 @@ static void LISTBOX_PaintItem( WND *wnd, LB_DESCR *descr, HDC hdc,
if
(
action
==
ODA_FOCUS
)
DrawFocusRect
(
hdc
,
rect
);
else
FIXME
_
(
listbox
)
(
"called with an out of bounds index %d(%d) in owner draw, Not good.
\n
"
,
index
,
descr
->
nb_items
);
FIXME
(
"called with an out of bounds index %d(%d) in owner draw, Not good.
\n
"
,
index
,
descr
->
nb_items
);
return
;
}
dis
.
CtlType
=
ODT_LISTBOX
;
...
...
@@ -481,7 +481,7 @@ static void LISTBOX_PaintItem( WND *wnd, LB_DESCR *descr, HDC hdc,
if
(
wnd
->
dwStyle
&
WS_DISABLED
)
dis
.
itemState
|=
ODS_DISABLED
;
dis
.
itemData
=
item
?
item
->
data
:
0
;
dis
.
rcItem
=
*
rect
;
TRACE
_
(
listbox
)
(
"[%04x]: drawitem %d (%s) action=%02x "
TRACE
(
"[%04x]: drawitem %d (%s) action=%02x "
"state=%02x rect=%d,%d-%d,%d
\n
"
,
wnd
->
hwndSelf
,
index
,
item
?
item
->
str
:
""
,
action
,
dis
.
itemState
,
rect
->
left
,
rect
->
top
,
...
...
@@ -503,7 +503,7 @@ static void LISTBOX_PaintItem( WND *wnd, LB_DESCR *descr, HDC hdc,
oldText
=
SetTextColor
(
hdc
,
GetSysColor
(
COLOR_HIGHLIGHTTEXT
));
}
TRACE
_
(
listbox
)
(
"[%04x]: painting %d (%s) action=%02x "
TRACE
(
"[%04x]: painting %d (%s) action=%02x "
"rect=%d,%d-%d,%d
\n
"
,
wnd
->
hwndSelf
,
index
,
item
?
item
->
str
:
""
,
action
,
rect
->
left
,
rect
->
top
,
rect
->
right
,
rect
->
bottom
);
...
...
@@ -635,7 +635,7 @@ static BOOL LISTBOX_SetTabStops( WND *wnd, LB_DESCR *descr, INT count,
if
(
TRACE_ON
(
listbox
))
dsprintf
(
listbox
,
"%hd "
,
descr
->
tabs
[
i
]);
}
TRACE
_
(
listbox
)
(
"[%04x]: settabstops %s
\n
"
,
TRACE
(
"[%04x]: settabstops %s
\n
"
,
wnd
->
hwndSelf
,
dbg_str
(
listbox
));
}
else
memcpy
(
descr
->
tabs
,
tabs
,
descr
->
nb_tabs
*
sizeof
(
INT
)
);
...
...
@@ -1015,7 +1015,7 @@ static LRESULT LISTBOX_SetItemHeight( WND *wnd, LB_DESCR *descr, INT index,
if
(
descr
->
style
&
LBS_OWNERDRAWVARIABLE
)
{
if
((
index
<
0
)
||
(
index
>=
descr
->
nb_items
))
return
LB_ERR
;
TRACE
_
(
listbox
)
(
"[%04x]: item %d height = %d
\n
"
,
TRACE
(
"[%04x]: item %d height = %d
\n
"
,
wnd
->
hwndSelf
,
index
,
height
);
descr
->
items
[
index
].
height
=
height
;
LISTBOX_UpdateScroll
(
wnd
,
descr
);
...
...
@@ -1023,7 +1023,7 @@ static LRESULT LISTBOX_SetItemHeight( WND *wnd, LB_DESCR *descr, INT index,
}
else
if
(
height
!=
descr
->
item_height
)
{
TRACE
_
(
listbox
)
(
"[%04x]: new height = %d
\n
"
,
TRACE
(
"[%04x]: new height = %d
\n
"
,
wnd
->
hwndSelf
,
height
);
descr
->
item_height
=
height
;
LISTBOX_UpdatePage
(
wnd
,
descr
);
...
...
@@ -1045,7 +1045,7 @@ static void LISTBOX_SetHorizontalPos( WND *wnd, LB_DESCR *descr, INT pos )
pos
=
descr
->
horz_extent
-
descr
->
width
;
if
(
pos
<
0
)
pos
=
0
;
if
(
!
(
diff
=
descr
->
horz_pos
-
pos
))
return
;
TRACE
_
(
listbox
)
(
"[%04x]: new horz pos = %d
\n
"
,
TRACE
(
"[%04x]: new horz pos = %d
\n
"
,
wnd
->
hwndSelf
,
pos
);
descr
->
horz_pos
=
pos
;
LISTBOX_UpdateScroll
(
wnd
,
descr
);
...
...
@@ -1067,7 +1067,7 @@ static LRESULT LISTBOX_SetHorizontalExtent( WND *wnd, LB_DESCR *descr,
return
LB_OKAY
;
if
(
extent
<=
0
)
extent
=
1
;
if
(
extent
==
descr
->
horz_extent
)
return
LB_OKAY
;
TRACE
_
(
listbox
)
(
"[%04x]: new horz extent = %d
\n
"
,
TRACE
(
"[%04x]: new horz extent = %d
\n
"
,
wnd
->
hwndSelf
,
extent
);
descr
->
horz_extent
=
extent
;
if
(
descr
->
horz_pos
>
extent
-
descr
->
width
)
...
...
@@ -1085,7 +1085,7 @@ static LRESULT LISTBOX_SetColumnWidth( WND *wnd, LB_DESCR *descr, UINT width)
{
width
+=
2
;
/* For left and right margin */
if
(
width
==
descr
->
column_width
)
return
LB_OKAY
;
TRACE
_
(
listbox
)
(
"[%04x]: new column width = %d
\n
"
,
TRACE
(
"[%04x]: new column width = %d
\n
"
,
wnd
->
hwndSelf
,
width
);
descr
->
column_width
=
width
;
LISTBOX_UpdatePage
(
wnd
,
descr
);
...
...
@@ -1108,7 +1108,7 @@ static INT LISTBOX_SetFont( WND *wnd, LB_DESCR *descr, HFONT font )
if
(
!
(
hdc
=
GetDCEx
(
wnd
->
hwndSelf
,
0
,
DCX_CACHE
)))
{
ERR
_
(
listbox
)
(
"unable to get DC.
\n
"
);
ERR
(
"unable to get DC.
\n
"
);
return
16
;
}
if
(
font
)
oldFont
=
SelectObject
(
hdc
,
font
);
...
...
@@ -1340,7 +1340,7 @@ static LRESULT LISTBOX_InsertItem( WND *wnd, LB_DESCR *descr, INT index,
mis
.
itemHeight
=
descr
->
item_height
;
SendMessageA
(
descr
->
owner
,
WM_MEASUREITEM
,
id
,
(
LPARAM
)
&
mis
);
item
->
height
=
mis
.
itemHeight
?
mis
.
itemHeight
:
1
;
TRACE
_
(
listbox
)
(
"[%04x]: measure item %d (%s) = %d
\n
"
,
TRACE
(
"[%04x]: measure item %d (%s) = %d
\n
"
,
wnd
->
hwndSelf
,
index
,
str
?
str
:
""
,
item
->
height
);
}
...
...
@@ -1392,7 +1392,7 @@ static LRESULT LISTBOX_InsertString( WND *wnd, LB_DESCR *descr, INT index,
return
ret
;
}
TRACE
_
(
listbox
)
(
"[%04x]: added item %d '%s'
\n
"
,
TRACE
(
"[%04x]: added item %d '%s'
\n
"
,
wnd
->
hwndSelf
,
index
,
HAS_STRINGS
(
descr
)
?
new_str
:
""
);
return
index
;
}
...
...
@@ -1729,7 +1729,7 @@ static LRESULT LISTBOX_HandleLButtonDown( WND *wnd, LB_DESCR *descr,
WPARAM
wParam
,
INT
x
,
INT
y
)
{
INT
index
=
LISTBOX_GetItemFromPoint
(
wnd
,
descr
,
x
,
y
);
TRACE
_
(
listbox
)
(
"[%04x]: lbuttondown %d,%d item %d
\n
"
,
TRACE
(
"[%04x]: lbuttondown %d,%d item %d
\n
"
,
wnd
->
hwndSelf
,
x
,
y
,
index
);
if
(
!
descr
->
caret_on
&&
(
GetFocus
()
==
wnd
->
hwndSelf
))
return
0
;
if
(
index
!=
-
1
)
...
...
@@ -2146,7 +2146,7 @@ static inline LRESULT WINAPI ListBoxWndProc_locked( WND* wnd, UINT msg,
{
if
(
!
LISTBOX_Create
(
wnd
,
NULL
))
return
-
1
;
TRACE
_
(
listbox
)
(
"creating wnd=%04x descr=%p
\n
"
,
TRACE
(
"creating wnd=%04x descr=%p
\n
"
,
hwnd
,
*
(
LB_DESCR
**
)
wnd
->
wExtra
);
return
0
;
}
...
...
@@ -2154,7 +2154,7 @@ static inline LRESULT WINAPI ListBoxWndProc_locked( WND* wnd, UINT msg,
return
DefWindowProcA
(
hwnd
,
msg
,
wParam
,
lParam
);
}
TRACE
_
(
listbox
)
(
"[%04x]: msg %s wp %08x lp %08lx
\n
"
,
TRACE
(
"[%04x]: msg %s wp %08x lp %08lx
\n
"
,
wnd
->
hwndSelf
,
SPY_GetMsgName
(
msg
),
wParam
,
lParam
);
switch
(
msg
)
{
...
...
@@ -2531,7 +2531,7 @@ static inline LRESULT WINAPI ListBoxWndProc_locked( WND* wnd, UINT msg,
return
DefWindowProcA
(
hwnd
,
msg
,
wParam
,
lParam
);
default:
if
((
msg
>=
WM_USER
)
&&
(
msg
<
0xc000
))
WARN
_
(
listbox
)
(
"[%04x]: unknown msg %04x wp %08x lp %08lx
\n
"
,
WARN
(
"[%04x]: unknown msg %04x wp %08x lp %08lx
\n
"
,
hwnd
,
msg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
msg
,
wParam
,
lParam
);
}
...
...
controls/menu.c
View file @
9fe7a254
This diff is collapsed.
Click to expand it.
controls/scroll.c
View file @
9fe7a254
...
...
@@ -10,7 +10,7 @@
#include "scroll.h"
#include "heap.h"
#include "win.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
scroll
)
...
...
@@ -708,7 +708,7 @@ void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
return
;
/* Should never happen */
}
TRACE
(
scroll
,
"Event: hwnd=%04x bar=%d msg=%x pt=%ld,%ld hit=%d
\n
"
,
TRACE
(
"Event: hwnd=%04x bar=%d msg=%x pt=%ld,%ld hit=%d
\n
"
,
hwnd
,
nBar
,
msg
,
pt
.
x
,
pt
.
y
,
hittest
);
switch
(
SCROLL_trackHitTest
)
...
...
@@ -865,7 +865,7 @@ LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
CREATESTRUCTA
*
lpCreat
=
(
CREATESTRUCTA
*
)
lParam
;
if
(
lpCreat
->
style
&
SBS_SIZEBOX
)
{
FIXME
(
scroll
,
"Unimplemented style SBS_SIZEBOX.
\n
"
);
FIXME
(
"Unimplemented style SBS_SIZEBOX.
\n
"
);
return
0
;
}
...
...
@@ -893,7 +893,7 @@ LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
}
}
if
(
!
hUpArrow
)
SCROLL_LoadBitmaps
();
TRACE
(
scroll
,
"ScrollBar creation, hwnd=%04x
\n
"
,
hwnd
);
TRACE
(
"ScrollBar creation, hwnd=%04x
\n
"
,
hwnd
);
return
0
;
case
WM_LBUTTONDOWN
:
...
...
@@ -944,7 +944,7 @@ LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
return
0
;
/* FIXME: return previous position */
case
SBM_GETRANGE16
:
FIXME
(
scroll
,
"don't know how to handle SBM_GETRANGE16 (wp=%04x,lp=%08lx)
\n
"
,
wParam
,
lParam
);
FIXME
(
"don't know how to handle SBM_GETRANGE16 (wp=%04x,lp=%08lx)
\n
"
,
wParam
,
lParam
);
return
0
;
case
SBM_GETRANGE
:
...
...
@@ -973,13 +973,13 @@ LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
case
0x00ed
:
case
0x00ee
:
case
0x00ef
:
ERR
(
scroll
,
"unknown Win32 msg %04x wp=%08x lp=%08lx
\n
"
,
ERR
(
"unknown Win32 msg %04x wp=%08x lp=%08lx
\n
"
,
message
,
wParam
,
lParam
);
break
;
default:
if
(
message
>=
WM_USER
)
WARN
(
scroll
,
"unknown msg %04x wp=%04x lp=%08lx
\n
"
,
WARN
(
"unknown msg %04x wp=%04x lp=%08lx
\n
"
,
message
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
message
,
wParam
,
lParam
);
}
...
...
@@ -1103,7 +1103,7 @@ INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar,
}
}
TRACE
(
scroll
,
"hwnd=%04x bar=%d %s
\n
"
,
TRACE
(
"hwnd=%04x bar=%d %s
\n
"
,
hwnd
,
nBar
,
dbg_str
(
scroll
));
/* Make sure the page size is valid */
...
...
@@ -1119,7 +1119,7 @@ INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar,
else
if
(
infoPtr
->
CurVal
>
infoPtr
->
MaxVal
-
MAX
(
infoPtr
->
Page
-
1
,
0
))
infoPtr
->
CurVal
=
infoPtr
->
MaxVal
-
MAX
(
infoPtr
->
Page
-
1
,
0
);
TRACE
(
scroll
,
" new values: page=%d pos=%d min=%d max=%d
\n
"
,
TRACE
(
" new values: page=%d pos=%d min=%d max=%d
\n
"
,
infoPtr
->
Page
,
infoPtr
->
CurVal
,
infoPtr
->
MinVal
,
infoPtr
->
MaxVal
);
...
...
@@ -1397,7 +1397,7 @@ BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
BOOL
retvalue
=
FALSE
;
if
(
!
wndPtr
)
return
FALSE
;
TRACE
(
scroll
,
"hwnd=%04x bar=%d horz=%d, vert=%d
\n
"
,
TRACE
(
"hwnd=%04x bar=%d horz=%d, vert=%d
\n
"
,
hwnd
,
nBar
,
fShowH
,
fShowV
);
switch
(
nBar
)
...
...
@@ -1498,7 +1498,7 @@ BOOL WINAPI EnableScrollBar( HWND hwnd, INT nBar, UINT flags )
BOOL
bFineWithMe
;
SCROLLBAR_INFO
*
infoPtr
;
TRACE
(
scroll
,
"%04x %d %d
\n
"
,
hwnd
,
nBar
,
flags
);
TRACE
(
"%04x %d %d
\n
"
,
hwnd
,
nBar
,
flags
);
flags
&=
ESB_DISABLE_BOTH
;
...
...
controls/static.c
View file @
9fe7a254
...
...
@@ -11,7 +11,7 @@
#include "cursoricon.h"
#include "static.h"
#include "heap.h"
#include "debug.h"
#include "debug
tools
.h"
#include "tweak.h"
DEFAULT_DEBUG_CHANNEL
(
static
)
...
...
@@ -64,7 +64,7 @@ static HICON16 STATIC_SetIcon( WND *wndPtr, HICON16 hicon )
if
((
wndPtr
->
dwStyle
&
SS_TYPEMASK
)
!=
SS_ICON
)
return
0
;
if
(
hicon
&&
!
info
)
{
ERR
(
static
,
"huh? hicon!=0, but info=0???
\n
"
);
ERR
(
"huh? hicon!=0, but info=0???
\n
"
);
return
0
;
}
prevIcon
=
infoPtr
->
hIcon
;
...
...
@@ -91,7 +91,7 @@ static HICON16 STATIC_SetBitmap( WND *wndPtr, HICON16 hicon )
if
((
wndPtr
->
dwStyle
&
SS_TYPEMASK
)
!=
SS_BITMAP
)
return
0
;
if
(
hicon
&&
!
info
)
{
ERR
(
static
,
"huh? hicon!=0, but info=0???
\n
"
);
ERR
(
"huh? hicon!=0, but info=0???
\n
"
);
return
0
;
}
prevIcon
=
infoPtr
->
hIcon
;
...
...
@@ -127,7 +127,7 @@ static HICON16 STATIC_LoadIcon( WND *wndPtr, LPCSTR name )
LPSTR
segname
=
SEGPTR_STRDUP
(
name
);
if
(
HIWORD
(
wndPtr
->
hInstance
))
FIXME
(
static
,
"win16 window class, but win32 hinstance??
\n
"
);
FIXME
(
"win16 window class, but win32 hinstance??
\n
"
);
hicon
=
LoadIcon16
(
wndPtr
->
hInstance
,
SEGPTR_GET
(
segname
)
);
SEGPTR_FREE
(
segname
);
}
...
...
@@ -198,14 +198,14 @@ LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
if
(
cs
->
lpszName
)
STATIC_SetBitmap
(
wndPtr
,
STATIC_LoadBitmap
(
wndPtr
,
cs
->
lpszName
));
WARN
(
static
,
"style SS_BITMAP, dwStyle is 0x%08lx
\n
"
,
WARN
(
"style SS_BITMAP, dwStyle is 0x%08lx
\n
"
,
wndPtr
->
dwStyle
);
lResult
=
1
;
goto
END
;
}
if
(
!
HIWORD
(
cs
->
lpszName
)
&&
(
cs
->
lpszName
))
{
FIXME
(
static
,
"windowName is 0x%04x, not doing DefWindowProc
\n
"
,
FIXME
(
"windowName is 0x%04x, not doing DefWindowProc
\n
"
,
LOWORD
(
cs
->
lpszName
));
lResult
=
1
;
goto
END
;
...
...
@@ -216,7 +216,7 @@ LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
case
WM_CREATE
:
if
(
style
<
0L
||
style
>
SS_TYPEMASK
)
{
ERR
(
static
,
"Unknown style 0x%02lx
\n
"
,
style
);
ERR
(
"Unknown style 0x%02lx
\n
"
,
style
);
lResult
=
-
1L
;
break
;
}
...
...
controls/uitools.c
View file @
9fe7a254
...
...
@@ -6,7 +6,7 @@
*/
#include "winuser.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
graphics
)
...
...
@@ -563,7 +563,7 @@ BOOL16 WINAPI DrawEdge16( HDC16 hdc, LPRECT16 rc, UINT16 edge, UINT16 flags )
*/
BOOL
WINAPI
DrawEdge
(
HDC
hdc
,
LPRECT
rc
,
UINT
edge
,
UINT
flags
)
{
TRACE
(
graphics
,
"%04x %d,%d-%d,%d %04x %04x
\n
"
,
TRACE
(
"%04x %d,%d-%d,%d %04x %04x
\n
"
,
hdc
,
rc
->
left
,
rc
->
top
,
rc
->
right
,
rc
->
bottom
,
edge
,
flags
);
if
(
flags
&
BF_DIAGONAL
)
...
...
@@ -929,7 +929,7 @@ static BOOL UITOOLS95_DrawFrameButton(HDC hdc, LPRECT rc, UINT uState)
return
UITOOLS95_DFC_ButtonRadio
(
hdc
,
rc
,
uState
);
default:
WARN
(
graphics
,
"Invalid button state=0x%04x
\n
"
,
uState
);
WARN
(
"Invalid button state=0x%04x
\n
"
,
uState
);
}
return
FALSE
;
...
...
@@ -1065,7 +1065,7 @@ static BOOL UITOOLS95_DrawFrameCaption(HDC dc, LPRECT r, UINT uFlags)
break
;
default:
WARN
(
graphics
,
"Invalid caption; flags=0x%04x
\n
"
,
uFlags
);
WARN
(
"Invalid caption; flags=0x%04x
\n
"
,
uFlags
);
return
FALSE
;
}
...
...
@@ -1235,7 +1235,7 @@ static BOOL UITOOLS95_DrawFrameScroll(HDC dc, LPRECT r, UINT uFlags)
return
TRUE
;
default:
WARN
(
graphics
,
"Invalid scroll; flags=0x%04x
\n
"
,
uFlags
);
WARN
(
"Invalid scroll; flags=0x%04x
\n
"
,
uFlags
);
return
FALSE
;
}
...
...
@@ -1337,7 +1337,7 @@ static BOOL UITOOLS95_DrawFrameMenu(HDC dc, LPRECT r, UINT uFlags)
break
;
default:
WARN
(
graphics
,
"Invalid menu; flags=0x%04x
\n
"
,
uFlags
);
WARN
(
"Invalid menu; flags=0x%04x
\n
"
,
uFlags
);
retval
=
FALSE
;
break
;
}
...
...
@@ -1385,7 +1385,7 @@ BOOL WINAPI DrawFrameControl( HDC hdc, LPRECT rc, UINT uType,
case
DFC_SCROLL
:
return
UITOOLS95_DrawFrameScroll
(
hdc
,
rc
,
uState
);
default:
WARN
(
graphics
,
"(%x,%p,%d,%x), bad type!
\n
"
,
WARN
(
"(%x,%p,%d,%x), bad type!
\n
"
,
hdc
,
rc
,
uType
,
uState
);
}
return
FALSE
;
...
...
dlls/advapi32/advapi.c
View file @
9fe7a254
...
...
@@ -12,7 +12,7 @@
#include "wine/winestring.h"
#include "heap.h"
#include "debug.h"
#include "debug
tools
.h"
/******************************************************************************
...
...
dlls/advapi32/crypt.c
View file @
9fe7a254
...
...
@@ -4,7 +4,7 @@
#include "windef.h"
#include "winerror.h"
#include "wincrypt.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
advapi
)
...
...
@@ -26,7 +26,7 @@ BOOL WINAPI
CryptAcquireContextA
(
HCRYPTPROV
*
phProv
,
LPCSTR
pszContainer
,
LPCSTR
pszProvider
,
DWORD
dwProvType
,
DWORD
dwFlags
)
{
FIXME
(
advapi
,
"(%p, %s, %s, %ld, %08lx): stub!
\n
"
,
phProv
,
pszContainer
,
FIXME
_
(
advapi
)(
"(%p, %s, %s, %ld, %08lx): stub!
\n
"
,
phProv
,
pszContainer
,
pszProvider
,
dwProvType
,
dwFlags
);
return
FALSE
;
}
...
...
dlls/advapi32/eventlog.c
View file @
9fe7a254
...
...
@@ -9,7 +9,7 @@
#include "winerror.h"
#include "heap.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
advapi
)
...
...
@@ -18,7 +18,7 @@ DEFAULT_DEBUG_CHANNEL(advapi)
*/
BOOL
WINAPI
BackupEventLogA
(
HANDLE
hEventLog
,
LPCSTR
lpBackupFileName
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -32,7 +32,7 @@ BOOL WINAPI BackupEventLogA( HANDLE hEventLog, LPCSTR lpBackupFileName )
BOOL
WINAPI
BackupEventLogW
(
HANDLE
hEventLog
,
LPCWSTR
lpBackupFileName
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -41,7 +41,7 @@ BackupEventLogW( HANDLE hEventLog, LPCWSTR lpBackupFileName )
*/
BOOL
WINAPI
ClearEventLogA
(
HANDLE
hEventLog
,
LPCSTR
lpBackupFileName
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -50,7 +50,7 @@ BOOL WINAPI ClearEventLogA ( HANDLE hEventLog, LPCSTR lpBackupFileName )
*/
BOOL
WINAPI
ClearEventLogW
(
HANDLE
hEventLog
,
LPCWSTR
lpBackupFileName
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -59,7 +59,7 @@ BOOL WINAPI ClearEventLogW ( HANDLE hEventLog, LPCWSTR lpBackupFileName )
*/
BOOL
WINAPI
CloseEventLog
(
HANDLE
hEventLog
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -74,7 +74,7 @@ BOOL WINAPI CloseEventLog ( HANDLE hEventLog )
*/
BOOL
WINAPI
DeregisterEventSource
(
HANDLE
hEventLog
)
{
FIXME
(
advapi
,
"(%d): stub
\n
"
,
hEventLog
);
FIXME
(
"(%d): stub
\n
"
,
hEventLog
);
return
TRUE
;
}
...
...
@@ -88,7 +88,7 @@ BOOL WINAPI DeregisterEventSource( HANDLE hEventLog )
BOOL
WINAPI
GetNumberOfEventLogRecords
(
HANDLE
hEventLog
,
PDWORD
NumberOfRecords
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -102,7 +102,7 @@ GetNumberOfEventLogRecords( HANDLE hEventLog, PDWORD NumberOfRecords )
BOOL
WINAPI
GetOldestEventLogRecord
(
HANDLE
hEventLog
,
PDWORD
OldestRecord
)
{
FIXME
(
advapi
,
":stub
\n
"
);
FIXME
(
":stub
\n
"
);
return
TRUE
;
}
...
...
@@ -115,7 +115,7 @@ GetOldestEventLogRecord( HANDLE hEventLog, PDWORD OldestRecord )
*/
BOOL
WINAPI
NotifyChangeEventLog
(
HANDLE
hEventLog
,
HANDLE
hEvent
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -125,7 +125,7 @@ BOOL WINAPI NotifyChangeEventLog( HANDLE hEventLog, HANDLE hEvent )
HANDLE
WINAPI
OpenBackupEventLogA
(
LPCSTR
lpUNCServerName
,
LPCSTR
lpFileName
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -139,7 +139,7 @@ OpenBackupEventLogA( LPCSTR lpUNCServerName, LPCSTR lpFileName )
HANDLE
WINAPI
OpenBackupEventLogW
(
LPCWSTR
lpUNCServerName
,
LPCWSTR
lpFileName
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -148,7 +148,7 @@ OpenBackupEventLogW( LPCWSTR lpUNCServerName, LPCWSTR lpFileName )
*/
HANDLE
WINAPI
OpenEventLogA
(
LPCSTR
uncname
,
LPCSTR
source
)
{
FIXME
(
advapi
,
"(%s,%s),stub!
\n
"
,
uncname
,
source
);
FIXME
(
"(%s,%s),stub!
\n
"
,
uncname
,
source
);
return
0xcafe4242
;
}
...
...
@@ -162,7 +162,7 @@ HANDLE WINAPI OpenEventLogA(LPCSTR uncname,LPCSTR source)
HANDLE
WINAPI
OpenEventLogW
(
LPCWSTR
uncname
,
LPCWSTR
source
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -172,7 +172,7 @@ OpenEventLogW( LPCWSTR uncname, LPCWSTR source )
BOOL
WINAPI
ReadEventLogA
(
HANDLE
hEventLog
,
DWORD
dwReadFlags
,
DWORD
dwRecordOffset
,
LPVOID
lpBuffer
,
DWORD
nNumberOfBytesToRead
,
DWORD
*
pnBytesRead
,
DWORD
*
pnMinNumberOfBytesNeeded
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -193,7 +193,7 @@ ReadEventLogW( HANDLE hEventLog, DWORD dwReadFlags, DWORD dwRecordOffset,
LPVOID
lpBuffer
,
DWORD
nNumberOfBytesToRead
,
DWORD
*
pnBytesRead
,
DWORD
*
pnMinNumberOfBytesNeeded
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -225,7 +225,7 @@ HANDLE WINAPI RegisterEventSourceA( LPCSTR lpUNCServerName, LPCSTR lpSourceName
HANDLE
WINAPI
RegisterEventSourceW
(
LPCWSTR
lpUNCServerName
,
LPCWSTR
lpSourceName
)
{
FIXME
(
advapi
,
"(%s,%s): stub
\n
"
,
debugstr_w
(
lpUNCServerName
),
FIXME
(
"(%s,%s): stub
\n
"
,
debugstr_w
(
lpUNCServerName
),
debugstr_w
(
lpSourceName
));
return
1
;
}
...
...
@@ -236,7 +236,7 @@ RegisterEventSourceW( LPCWSTR lpUNCServerName, LPCWSTR lpSourceName )
BOOL
WINAPI
ReportEventA
(
HANDLE
hEventLog
,
WORD
wType
,
WORD
wCategory
,
DWORD
dwEventID
,
PSID
lpUserSid
,
WORD
wNumStrings
,
DWORD
dwDataSize
,
LPCSTR
*
lpStrings
,
LPVOID
lpRawData
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
...
...
@@ -259,6 +259,6 @@ ReportEventW( HANDLE hEventLog, WORD wType, WORD wCategory,
DWORD
dwEventID
,
PSID
lpUserSid
,
WORD
wNumStrings
,
DWORD
dwDataSize
,
LPCWSTR
*
lpStrings
,
LPVOID
lpRawData
)
{
FIXME
(
advapi
,
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
TRUE
;
}
dlls/advapi32/service.c
View file @
9fe7a254
...
...
@@ -9,7 +9,7 @@
#include "winreg.h"
#include "winerror.h"
#include "heap.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
advapi
)
...
...
@@ -26,7 +26,7 @@ EnumServicesStatusA( HANDLE hSCManager, DWORD dwServiceType,
DWORD
dwServiceState
,
LPVOID
lpServices
,
DWORD
cbBufSize
,
LPDWORD
pcbBytesNeeded
,
LPDWORD
lpServicesReturned
,
LPDWORD
lpResumeHandle
)
{
FIXME
(
advapi
,
"%x type=%lx state=%lx %p %lx %p %p %p
\n
"
,
hSCManager
,
{
FIXME
(
"%x type=%lx state=%lx %p %lx %p %p %p
\n
"
,
hSCManager
,
dwServiceType
,
dwServiceState
,
lpServices
,
cbBufSize
,
pcbBytesNeeded
,
lpServicesReturned
,
lpResumeHandle
);
SetLastError
(
ERROR_ACCESS_DENIED
);
...
...
@@ -41,7 +41,7 @@ StartServiceCtrlDispatcherA( LPSERVICE_TABLE_ENTRYA servent )
{
LPSERVICE_TABLE_ENTRYA
ptr
=
servent
;
while
(
ptr
->
lpServiceName
)
{
FIXME
(
advapi
,
"%s at %p
\n
"
,
ptr
->
lpServiceName
,
ptr
);
{
FIXME
(
"%s at %p
\n
"
,
ptr
->
lpServiceName
,
ptr
);
ptr
++
;
}
return
TRUE
;
...
...
@@ -59,7 +59,7 @@ StartServiceCtrlDispatcherW( LPSERVICE_TABLE_ENTRYW servent )
LPSERVICE_MAIN_FUNCTIONW
fpMain
;
while
(
ptr
->
lpServiceName
)
{
FIXME
(
advapi
,
"%s at %p): STUB.
\n
"
,
debugstr_w
(
ptr
->
lpServiceName
),
ptr
);
{
FIXME
(
"%s at %p): STUB.
\n
"
,
debugstr_w
(
ptr
->
lpServiceName
),
ptr
);
fpMain
=
ptr
->
lpServiceProc
;
fpMain
(
0
,
NULL
);
/* try to start the service */
ptr
++
;
...
...
@@ -73,7 +73,7 @@ StartServiceCtrlDispatcherW( LPSERVICE_TABLE_ENTRYW servent )
SERVICE_STATUS_HANDLE
WINAPI
RegisterServiceCtrlHandlerA
(
LPSTR
lpServiceName
,
LPHANDLER_FUNCTION
lpfHandler
)
{
FIXME
(
advapi
,
"%s %p
\n
"
,
lpServiceName
,
lpfHandler
);
{
FIXME
(
"%s %p
\n
"
,
lpServiceName
,
lpfHandler
);
return
0xcacacafe
;
}
...
...
@@ -87,7 +87,7 @@ RegisterServiceCtrlHandlerA( LPSTR lpServiceName,
SERVICE_STATUS_HANDLE
WINAPI
RegisterServiceCtrlHandlerW
(
LPWSTR
lpServiceName
,
LPHANDLER_FUNCTION
lpfHandler
)
{
FIXME
(
advapi
,
"%s %p
\n
"
,
debugstr_w
(
lpServiceName
),
lpfHandler
);
{
FIXME
(
"%s %p
\n
"
,
debugstr_w
(
lpServiceName
),
lpfHandler
);
return
0xcacacafe
;
}
...
...
@@ -100,14 +100,14 @@ RegisterServiceCtrlHandlerW( LPWSTR lpServiceName,
*/
BOOL
WINAPI
SetServiceStatus
(
SERVICE_STATUS_HANDLE
hService
,
LPSERVICE_STATUS
lpStatus
)
{
FIXME
(
advapi
,
"%lx %p
\n
"
,
hService
,
lpStatus
);
TRACE
(
advapi
,
"
\t
Type:%lx
\n
"
,
lpStatus
->
dwServiceType
);
TRACE
(
advapi
,
"
\t
State:%lx
\n
"
,
lpStatus
->
dwCurrentState
);
TRACE
(
advapi
,
"
\t
ControlAccepted:%lx
\n
"
,
lpStatus
->
dwControlsAccepted
);
TRACE
(
advapi
,
"
\t
ExitCode:%lx
\n
"
,
lpStatus
->
dwWin32ExitCode
);
TRACE
(
advapi
,
"
\t
ServiceExitCode:%lx
\n
"
,
lpStatus
->
dwServiceSpecificExitCode
);
TRACE
(
advapi
,
"
\t
CheckPoint:%lx
\n
"
,
lpStatus
->
dwCheckPoint
);
TRACE
(
advapi
,
"
\t
WaitHint:%lx
\n
"
,
lpStatus
->
dwWaitHint
);
{
FIXME
(
"%lx %p
\n
"
,
hService
,
lpStatus
);
TRACE
(
"
\t
Type:%lx
\n
"
,
lpStatus
->
dwServiceType
);
TRACE
(
"
\t
State:%lx
\n
"
,
lpStatus
->
dwCurrentState
);
TRACE
(
"
\t
ControlAccepted:%lx
\n
"
,
lpStatus
->
dwControlsAccepted
);
TRACE
(
"
\t
ExitCode:%lx
\n
"
,
lpStatus
->
dwWin32ExitCode
);
TRACE
(
"
\t
ServiceExitCode:%lx
\n
"
,
lpStatus
->
dwServiceSpecificExitCode
);
TRACE
(
"
\t
CheckPoint:%lx
\n
"
,
lpStatus
->
dwCheckPoint
);
TRACE
(
"
\t
WaitHint:%lx
\n
"
,
lpStatus
->
dwWaitHint
);
return
TRUE
;
}
...
...
@@ -147,7 +147,7 @@ HANDLE WINAPI
OpenSCManagerW
(
LPCWSTR
lpMachineName
,
LPCWSTR
lpDatabaseName
,
DWORD
dwDesiredAccess
)
{
FIXME
(
advapi
,
"(%s,%s,0x%08lx): stub
\n
"
,
debugstr_w
(
lpMachineName
),
FIXME
(
"(%s,%s,0x%08lx): stub
\n
"
,
debugstr_w
(
lpMachineName
),
debugstr_w
(
lpDatabaseName
),
dwDesiredAccess
);
return
1
;
}
...
...
@@ -186,7 +186,7 @@ BOOL WINAPI
ControlService
(
HANDLE
hService
,
DWORD
dwControl
,
LPSERVICE_STATUS
lpServiceStatus
)
{
FIXME
(
advapi
,
"(%d,%ld,%p): stub
\n
"
,
hService
,
dwControl
,
lpServiceStatus
);
FIXME
(
"(%d,%ld,%p): stub
\n
"
,
hService
,
dwControl
,
lpServiceStatus
);
return
TRUE
;
}
...
...
@@ -206,7 +206,7 @@ ControlService( HANDLE hService, DWORD dwControl,
BOOL
WINAPI
CloseServiceHandle
(
HANDLE
hSCObject
)
{
FIXME
(
advapi
,
"(%d): stub
\n
"
,
hSCObject
);
FIXME
(
"(%d): stub
\n
"
,
hSCObject
);
return
TRUE
;
}
...
...
@@ -246,7 +246,7 @@ HANDLE WINAPI
OpenServiceW
(
HANDLE
hSCManager
,
LPCWSTR
lpServiceName
,
DWORD
dwDesiredAccess
)
{
FIXME
(
advapi
,
"(%d,%p,%ld): stub
\n
"
,
hSCManager
,
lpServiceName
,
FIXME
(
"(%d,%p,%ld): stub
\n
"
,
hSCManager
,
lpServiceName
,
dwDesiredAccess
);
return
1
;
}
...
...
@@ -264,7 +264,7 @@ CreateServiceA( DWORD hSCManager, LPCSTR lpServiceName,
LPCSTR
lpDependencies
,
LPCSTR
lpServiceStartName
,
LPCSTR
lpPassword
)
{
FIXME
(
advapi
,
"(%ld,%s,%s,...): stub
\n
"
,
FIXME
(
"(%ld,%s,%s,...): stub
\n
"
,
hSCManager
,
debugstr_a
(
lpServiceName
),
debugstr_a
(
lpDisplayName
));
return
1
;
}
...
...
@@ -284,7 +284,7 @@ CreateServiceA( DWORD hSCManager, LPCSTR lpServiceName,
BOOL
WINAPI
DeleteService
(
HANDLE
hService
)
{
FIXME
(
advapi
,
"(%d): stub
\n
"
,
hService
);
FIXME
(
"(%d): stub
\n
"
,
hService
);
return
TRUE
;
}
...
...
@@ -299,7 +299,7 @@ BOOL WINAPI
StartServiceA
(
HANDLE
hService
,
DWORD
dwNumServiceArgs
,
LPCSTR
*
lpServiceArgVectors
)
{
FIXME
(
advapi
,
"(%d,%ld,%p): stub
\n
"
,
hService
,
dwNumServiceArgs
,
lpServiceArgVectors
);
FIXME
(
"(%d,%ld,%p): stub
\n
"
,
hService
,
dwNumServiceArgs
,
lpServiceArgVectors
);
return
TRUE
;
}
...
...
@@ -322,7 +322,7 @@ BOOL WINAPI
StartServiceW
(
HANDLE
hService
,
DWORD
dwNumServiceArgs
,
LPCWSTR
*
lpServiceArgVectors
)
{
FIXME
(
advapi
,
"(%d,%ld,%p): stub
\n
"
,
hService
,
dwNumServiceArgs
,
FIXME
(
"(%d,%ld,%p): stub
\n
"
,
hService
,
dwNumServiceArgs
,
lpServiceArgVectors
);
return
TRUE
;
}
...
...
@@ -341,7 +341,7 @@ StartServiceW( HANDLE hService, DWORD dwNumServiceArgs,
BOOL
WINAPI
QueryServiceStatus
(
HANDLE
hService
,
LPVOID
lpservicestatus
)
{
FIXME
(
advapi
,
"(%d,%p),stub!
\n
"
,
hService
,
lpservicestatus
);
FIXME
(
"(%d,%p),stub!
\n
"
,
hService
,
lpservicestatus
);
return
TRUE
;
}
dlls/imagehlp/access.c
View file @
9fe7a254
...
...
@@ -9,7 +9,7 @@
#include "winerror.h"
#include "windef.h"
#include "heap.h"
#include "debug.h"
#include "debug
tools
.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL
(
imagehlp
)
...
...
@@ -44,7 +44,7 @@ BOOL WINAPI EnumerateLoadedModules(
PENUMLOADED_MODULES_CALLBACK
EnumLoadedModulesCallback
,
PVOID
UserContext
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p): stub
\n
"
,
hProcess
,
EnumLoadedModulesCallback
,
UserContext
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -56,7 +56,7 @@ BOOL WINAPI EnumerateLoadedModules(
*/
DWORD
WINAPI
GetTimestampForLoadedLibrary
(
HMODULE
Module
)
{
FIXME
(
imagehlp
,
"(0x%08x): stub
\n
"
,
Module
);
FIXME
(
"(0x%08x): stub
\n
"
,
Module
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
...
...
@@ -68,7 +68,7 @@ BOOL WINAPI GetImageConfigInformation(
PLOADED_IMAGE
LoadedImage
,
PIMAGE_LOAD_CONFIG_DIRECTORY
ImageConfigInformation
)
{
FIXME
(
imagehlp
,
"(%p, %p): stub
\n
"
,
FIXME
(
"(%p, %p): stub
\n
"
,
LoadedImage
,
ImageConfigInformation
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -82,7 +82,7 @@ DWORD WINAPI GetImageUnusedHeaderBytes(
PLOADED_IMAGE
LoadedImage
,
LPDWORD
SizeUnusedHeaderBytes
)
{
FIXME
(
imagehlp
,
"(%p, %p): stub
\n
"
,
FIXME
(
"(%p, %p): stub
\n
"
,
LoadedImage
,
SizeUnusedHeaderBytes
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -95,7 +95,7 @@ DWORD WINAPI GetImageUnusedHeaderBytes(
PVOID
WINAPI
ImageDirectoryEntryToData
(
PVOID
Base
,
BOOLEAN
MappedAsImage
,
USHORT
DirectoryEntry
,
PULONG
Size
)
{
FIXME
(
imagehlp
,
"(%p, %d, %d, %p): stub
\n
"
,
FIXME
(
"(%p, %d, %d, %p): stub
\n
"
,
Base
,
MappedAsImage
,
DirectoryEntry
,
Size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -127,7 +127,7 @@ PIMAGE_NT_HEADERS WINAPI ImageNtHeader(PVOID Base)
PIMAGE_SECTION_HEADER
WINAPI
ImageRvaToSection
(
PIMAGE_NT_HEADERS
NtHeaders
,
PVOID
Base
,
ULONG
Rva
)
{
FIXME
(
imagehlp
,
"(%p, %p, %ld): stub
\n
"
,
NtHeaders
,
Base
,
Rva
);
FIXME
(
"(%p, %p, %ld): stub
\n
"
,
NtHeaders
,
Base
,
Rva
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
}
...
...
@@ -139,7 +139,7 @@ PVOID WINAPI ImageRvaToVa(
PIMAGE_NT_HEADERS
NtHeaders
,
PVOID
Base
,
ULONG
Rva
,
PIMAGE_SECTION_HEADER
*
LastRvaSection
)
{
FIXME
(
imagehlp
,
"(%p, %p, %ld, %p): stub
\n
"
,
FIXME
(
"(%p, %p, %ld, %p): stub
\n
"
,
NtHeaders
,
Base
,
Rva
,
LastRvaSection
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -215,7 +215,7 @@ BOOL WINAPI MapAndLoad(
hFile
,
NULL
,
PAGE_READONLY
|
SEC_COMMIT
,
0
,
0
,
NULL
)))
{
DWORD
dwLastError
=
GetLastError
();
WARN
(
imagehlp
,
"CreateFileMapping: Error = %ld
\n
"
,
dwLastError
);
WARN
(
"CreateFileMapping: Error = %ld
\n
"
,
dwLastError
);
SetLastError
(
dwLastError
);
goto
Error
;
}
...
...
@@ -226,7 +226,7 @@ BOOL WINAPI MapAndLoad(
hFileMapping
,
FILE_MAP_READ
,
0
,
0
,
0
)))
{
DWORD
dwLastError
=
GetLastError
();
WARN
(
imagehlp
,
"MapViewOfFile: Error = %ld
\n
"
,
dwLastError
);
WARN
(
"MapViewOfFile: Error = %ld
\n
"
,
dwLastError
);
SetLastError
(
dwLastError
);
goto
Error
;
}
...
...
@@ -287,7 +287,7 @@ BOOL WINAPI SetImageConfigInformation(
PLOADED_IMAGE
LoadedImage
,
PIMAGE_LOAD_CONFIG_DIRECTORY
ImageConfigInformation
)
{
FIXME
(
imagehlp
,
"(%p, %p): stub
\n
"
,
FIXME
(
"(%p, %p): stub
\n
"
,
LoadedImage
,
ImageConfigInformation
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -299,7 +299,7 @@ BOOL WINAPI SetImageConfigInformation(
*/
BOOL
WINAPI
UnMapAndLoad
(
PLOADED_IMAGE
LoadedImage
)
{
FIXME
(
imagehlp
,
"(%p): stub
\n
"
,
LoadedImage
);
FIXME
(
"(%p): stub
\n
"
,
LoadedImage
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
dlls/imagehlp/debug.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winerror.h"
#include "winbase.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL
(
imagehlp
)
...
...
@@ -18,7 +18,7 @@ DEFAULT_DEBUG_CHANNEL(imagehlp)
HANDLE
WINAPI
FindDebugInfoFile
(
LPSTR
FileName
,
LPSTR
SymbolPath
,
LPSTR
DebugFilePath
)
{
FIXME
(
imagehlp
,
"(%s, %s, %s): stub
\n
"
,
FIXME
(
"(%s, %s, %s): stub
\n
"
,
debugstr_a
(
FileName
),
debugstr_a
(
SymbolPath
),
debugstr_a
(
DebugFilePath
)
);
...
...
@@ -32,7 +32,7 @@ HANDLE WINAPI FindDebugInfoFile(
HANDLE
WINAPI
FindExecutableImage
(
LPSTR
FileName
,
LPSTR
SymbolPath
,
LPSTR
ImageFilePath
)
{
FIXME
(
imagehlp
,
"(%s, %s, %s): stub
\n
"
,
FIXME
(
"(%s, %s, %s): stub
\n
"
,
debugstr_a
(
FileName
),
debugstr_a
(
SymbolPath
),
debugstr_a
(
ImageFilePath
)
);
...
...
@@ -47,7 +47,7 @@ PIMAGE_DEBUG_INFORMATION WINAPI MapDebugInformation(
HANDLE
FileHandle
,
LPSTR
FileName
,
LPSTR
SymbolPath
,
DWORD
ImageBase
)
{
FIXME
(
imagehlp
,
"(0x%08x, %s, %s, 0x%08lx): stub
\n
"
,
FIXME
(
"(0x%08x, %s, %s, 0x%08lx): stub
\n
"
,
FileHandle
,
FileName
,
SymbolPath
,
ImageBase
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -65,7 +65,7 @@ BOOL WINAPI StackWalk(
PGET_MODULE_BASE_ROUTINE
GetModuleBaseRoutine
,
PTRANSLATE_ADDRESS_ROUTINE
TranslateAddress
)
{
FIXME
(
imagehlp
,
FIXME
(
"(%ld, 0x%08x, 0x%08x, %p, %p, %p, %p, %p, %p): stub
\n
"
,
MachineType
,
hProcess
,
hThread
,
StackFrame
,
ContextRecord
,
ReadMemoryRoutine
,
FunctionTableAccessRoutine
,
...
...
@@ -82,7 +82,7 @@ DWORD WINAPI UnDecorateSymbolName(
LPCSTR
DecoratedName
,
LPSTR
UnDecoratedName
,
DWORD
UndecoratedLength
,
DWORD
Flags
)
{
FIXME
(
imagehlp
,
"(%s, %s, %ld, 0x%08lx): stub
\n
"
,
FIXME
(
"(%s, %s, %ld, 0x%08lx): stub
\n
"
,
debugstr_a
(
DecoratedName
),
debugstr_a
(
UnDecoratedName
),
UndecoratedLength
,
Flags
);
...
...
@@ -97,7 +97,7 @@ DWORD WINAPI UnDecorateSymbolName(
BOOL
WINAPI
UnmapDebugInformation
(
PIMAGE_DEBUG_INFORMATION
DebugInfo
)
{
FIXME
(
imagehlp
,
"(%p): stub
\n
"
,
DebugInfo
);
FIXME
(
"(%p): stub
\n
"
,
DebugInfo
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/imagehlp/imagehlp_main.c
View file @
9fe7a254
...
...
@@ -8,7 +8,7 @@
#include "winerror.h"
#include "winbase.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
imagehlp
)
...
...
@@ -72,7 +72,7 @@ PAPI_VERSION WINAPI ImagehlpApiVersionEx(PAPI_VERSION AppVersion)
*/
BOOL
WINAPI
MakeSureDirectoryPathExists
(
LPCSTR
DirPath
)
{
FIXME
(
imagehlp
,
"(%s): stub
\n
"
,
debugstr_a
(
DirPath
));
FIXME
(
"(%s): stub
\n
"
,
debugstr_a
(
DirPath
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -89,7 +89,7 @@ BOOL WINAPI MakeSureDirectoryPathExists(LPCSTR DirPath)
BOOL
WINAPI
SearchTreeForFile
(
LPSTR
RootPath
,
LPSTR
InputPathName
,
LPSTR
OutputPathBuffer
)
{
FIXME
(
imagehlp
,
"(%s, %s, %s): stub
\n
"
,
FIXME
(
"(%s, %s, %s): stub
\n
"
,
debugstr_a
(
RootPath
),
debugstr_a
(
InputPathName
),
debugstr_a
(
OutputPathBuffer
)
);
...
...
@@ -103,7 +103,7 @@ BOOL WINAPI SearchTreeForFile(
BOOL
WINAPI
TouchFileTimes
(
HANDLE
FileHandle
,
LPSYSTEMTIME
lpSystemTime
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %p): stub
\n
"
,
FileHandle
,
lpSystemTime
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/imagehlp/integrity.c
View file @
9fe7a254
...
...
@@ -8,7 +8,7 @@
#include "winbase.h"
#include "winerror.h"
#include "imagehlp.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
imagehlp
)
...
...
@@ -19,7 +19,7 @@ DEFAULT_DEBUG_CHANNEL(imagehlp)
BOOL
WINAPI
ImageAddCertificate
(
HANDLE
FileHandle
,
PWIN_CERTIFICATE
Certificate
,
PDWORD
Index
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p): stub
\n
"
,
FileHandle
,
Certificate
,
Index
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -33,7 +33,7 @@ BOOL WINAPI ImageEnumerateCertificates(
HANDLE
FileHandle
,
WORD
TypeFilter
,
PDWORD
CertificateCount
,
PDWORD
Indices
,
DWORD
IndexCount
)
{
FIXME
(
imagehlp
,
"(0x%08x, %hd, %p, %p, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %hd, %p, %p, %ld): stub
\n
"
,
FileHandle
,
TypeFilter
,
CertificateCount
,
Indices
,
IndexCount
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -47,7 +47,7 @@ BOOL WINAPI ImageGetCertificateData(
HANDLE
FileHandle
,
DWORD
CertificateIndex
,
PWIN_CERTIFICATE
Certificate
,
PDWORD
RequiredLength
)
{
FIXME
(
imagehlp
,
"(0x%08x, %ld, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %ld, %p, %p): stub
\n
"
,
FileHandle
,
CertificateIndex
,
Certificate
,
RequiredLength
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -61,7 +61,7 @@ BOOL WINAPI ImageGetCertificateHeader(
HANDLE
FileHandle
,
DWORD
CertificateIndex
,
PWIN_CERTIFICATE
Certificateheader
)
{
FIXME
(
imagehlp
,
"(0x%08x, %ld, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %ld, %p): stub
\n
"
,
FileHandle
,
CertificateIndex
,
Certificateheader
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -75,7 +75,7 @@ BOOL WINAPI ImageGetDigestStream(
HANDLE
FileHandle
,
DWORD
DigestLevel
,
DIGEST_FUNCTION
DigestFunction
,
DIGEST_HANDLE
DigestHandle
)
{
FIXME
(
imagehlp
,
"(%0x08x, %ld, %p, %p): stub
\n
"
,
FIXME
(
"(%0x08x, %ld, %p, %p): stub
\n
"
,
FileHandle
,
DigestLevel
,
DigestFunction
,
DigestHandle
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -87,7 +87,7 @@ BOOL WINAPI ImageGetDigestStream(
*/
BOOL
WINAPI
ImageRemoveCertificate
(
HANDLE
FileHandle
,
DWORD
Index
)
{
FIXME
(
imagehlp
,
"(0x%08x, %ld): stub
\n
"
,
FileHandle
,
Index
);
FIXME
(
"(0x%08x, %ld): stub
\n
"
,
FileHandle
,
Index
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/imagehlp/internal.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "imagehlp.h"
/***********************************************************************
...
...
dlls/imagehlp/modify.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL
(
imagehlp
)
...
...
@@ -28,7 +28,7 @@ BOOL WINAPI BindImageEx(
DWORD
Flags
,
LPSTR
ImageName
,
LPSTR
DllPath
,
LPSTR
SymbolPath
,
PIMAGEHLP_STATUS_ROUTINE
StatusRoutine
)
{
FIXME
(
imagehlp
,
"(%ld, %s, %s, %s, %p): stub
\n
"
,
FIXME
(
"(%ld, %s, %s, %s, %p): stub
\n
"
,
Flags
,
debugstr_a
(
ImageName
),
debugstr_a
(
DllPath
),
debugstr_a
(
SymbolPath
),
StatusRoutine
);
...
...
@@ -43,7 +43,7 @@ PIMAGE_NT_HEADERS WINAPI CheckSumMappedFile(
LPVOID
BaseAddress
,
DWORD
FileLength
,
LPDWORD
HeaderSum
,
LPDWORD
CheckSum
)
{
FIXME
(
imagehlp
,
"(%p, %ld, %p, %p): stub
\n
"
,
FIXME
(
"(%p, %ld, %p, %p): stub
\n
"
,
BaseAddress
,
FileLength
,
HeaderSum
,
CheckSum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -56,7 +56,7 @@ PIMAGE_NT_HEADERS WINAPI CheckSumMappedFile(
DWORD
WINAPI
MapFileAndCheckSumA
(
LPSTR
Filename
,
LPDWORD
HeaderSum
,
LPDWORD
CheckSum
)
{
FIXME
(
imagehlp
,
"(%s, %p, %p): stub
\n
"
,
FIXME
(
"(%s, %p, %p): stub
\n
"
,
debugstr_a
(
Filename
),
HeaderSum
,
CheckSum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -69,7 +69,7 @@ DWORD WINAPI MapFileAndCheckSumA(
DWORD
WINAPI
MapFileAndCheckSumW
(
LPWSTR
Filename
,
LPDWORD
HeaderSum
,
LPDWORD
CheckSum
)
{
FIXME
(
imagehlp
,
"(%s, %p, %p): stub
\n
"
,
FIXME
(
"(%s, %p, %p): stub
\n
"
,
debugstr_w
(
Filename
),
HeaderSum
,
CheckSum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -85,7 +85,7 @@ BOOL WINAPI ReBaseImage(
ULONG
*
OldImageSize
,
ULONG
*
OldImageBase
,
ULONG
*
NewImageSize
,
ULONG
*
NewImageBase
,
ULONG
TimeStamp
)
{
FIXME
(
imagehlp
,
FIXME
(
"(%s, %s, %d, %d, %d, %ld, %p, %p, %p, %p, %ld): stub
\n
"
,
debugstr_a
(
CurrentImageName
),
debugstr_a
(
SymbolPath
),
fReBase
,
fRebaseSysfileOk
,
fGoingDown
,
CheckImageSize
,
OldImageSize
,
...
...
@@ -101,7 +101,7 @@ BOOL WINAPI ReBaseImage(
BOOL
WINAPI
RemovePrivateCvSymbolic
(
PCHAR
DebugData
,
PCHAR
*
NewDebugData
,
ULONG
*
NewDebugSize
)
{
FIXME
(
imagehlp
,
"(%p, %p, %p): stub
\n
"
,
FIXME
(
"(%p, %p, %p): stub
\n
"
,
DebugData
,
NewDebugData
,
NewDebugSize
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -113,7 +113,7 @@ BOOL WINAPI RemovePrivateCvSymbolic(
*/
VOID
WINAPI
RemoveRelocations
(
PCHAR
ImageName
)
{
FIXME
(
imagehlp
,
"(%p): stub
\n
"
,
ImageName
);
FIXME
(
"(%p): stub
\n
"
,
ImageName
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
}
...
...
@@ -124,7 +124,7 @@ BOOL WINAPI SplitSymbols(
LPSTR
ImageName
,
LPSTR
SymbolsPath
,
LPSTR
SymbolFilePath
,
DWORD
Flags
)
{
FIXME
(
imagehlp
,
"(%s, %s, %s, %ld): stub
\n
"
,
FIXME
(
"(%s, %s, %s, %ld): stub
\n
"
,
debugstr_a
(
ImageName
),
debugstr_a
(
SymbolsPath
),
debugstr_a
(
SymbolFilePath
),
Flags
);
...
...
@@ -139,7 +139,7 @@ BOOL WINAPI UpdateDebugInfoFile(
LPSTR
ImageFileName
,
LPSTR
SymbolPath
,
LPSTR
DebugFilePath
,
PIMAGE_NT_HEADERS
NtHeaders
)
{
FIXME
(
imagehlp
,
"(%s, %s, %s, %p): stub
\n
"
,
FIXME
(
"(%s, %s, %s, %p): stub
\n
"
,
debugstr_a
(
ImageFileName
),
debugstr_a
(
SymbolPath
),
debugstr_a
(
DebugFilePath
),
NtHeaders
);
...
...
@@ -156,7 +156,7 @@ BOOL WINAPI UpdateDebugInfoFileEx(
LPSTR
ImageFileName
,
LPSTR
SymbolPath
,
LPSTR
DebugFilePath
,
PIMAGE_NT_HEADERS
NtHeaders
,
DWORD
OldChecksum
)
{
FIXME
(
imagehlp
,
"(%s, %s, %s, %p, %ld): stub
\n
"
,
FIXME
(
"(%s, %s, %s, %p, %ld): stub
\n
"
,
debugstr_a
(
ImageFileName
),
debugstr_a
(
SymbolPath
),
debugstr_a
(
DebugFilePath
),
NtHeaders
,
OldChecksum
);
...
...
dlls/imagehlp/symbol.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL
(
imagehlp
)
...
...
@@ -17,7 +17,7 @@ DEFAULT_DEBUG_CHANNEL(imagehlp)
*/
BOOL
WINAPI
SymCleanup
(
HANDLE
hProcess
)
{
FIXME
(
imagehlp
,
"(0x%08x): stub
\n
"
,
hProcess
);
FIXME
(
"(0x%08x): stub
\n
"
,
hProcess
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -30,7 +30,7 @@ BOOL WINAPI SymEnumerateModules(
HANDLE
hProcess
,
PSYM_ENUMMODULES_CALLBACK
EnumModulesCallback
,
PVOID
UserContext
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p): stub
\n
"
,
hProcess
,
EnumModulesCallback
,
UserContext
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -44,7 +44,7 @@ BOOL WINAPI SymEnumerateSymbols(
HANDLE
hProcess
,
DWORD
BaseOfDll
,
PSYM_ENUMSYMBOLS_CALLBACK
EnumSymbolsCallback
,
PVOID
UserContext
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p): stub
\n
"
,
hProcess
,
EnumSymbolsCallback
,
UserContext
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -56,7 +56,7 @@ BOOL WINAPI SymEnumerateSymbols(
*/
PVOID
WINAPI
SymFunctionTableAccess
(
HANDLE
hProcess
,
DWORD
AddrBase
)
{
FIXME
(
imagehlp
,
"(0x%08x, 0x%08lx): stub
\n
"
,
hProcess
,
AddrBase
);
FIXME
(
"(0x%08x, 0x%08lx): stub
\n
"
,
hProcess
,
AddrBase
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -66,7 +66,7 @@ PVOID WINAPI SymFunctionTableAccess(HANDLE hProcess, DWORD AddrBase)
*/
DWORD
WINAPI
SymGetModuleBase
(
HANDLE
hProcess
,
DWORD
dwAddr
)
{
FIXME
(
imagehlp
,
"(0x%08x, 0x%08lx): stub
\n
"
,
hProcess
,
dwAddr
);
FIXME
(
"(0x%08x, 0x%08lx): stub
\n
"
,
hProcess
,
dwAddr
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
...
...
@@ -78,7 +78,7 @@ BOOL WINAPI SymGetModuleInfo(
HANDLE
hProcess
,
DWORD
dwAddr
,
PIMAGEHLP_MODULE
ModuleInfo
)
{
FIXME
(
imagehlp
,
"(0x%08x, 0x%08lx, %p): stub
\n
"
,
FIXME
(
"(0x%08x, 0x%08lx, %p): stub
\n
"
,
hProcess
,
dwAddr
,
ModuleInfo
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -90,7 +90,7 @@ BOOL WINAPI SymGetModuleInfo(
*/
DWORD
WINAPI
SymGetOptions
()
{
FIXME
(
imagehlp
,
"(): stub
\n
"
);
FIXME
(
"(): stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
...
...
@@ -101,7 +101,7 @@ DWORD WINAPI SymGetOptions()
BOOL
WINAPI
SymGetSearchPath
(
HANDLE
hProcess
,
LPSTR
szSearchPath
,
DWORD
SearchPathLength
)
{
FIXME
(
imagehlp
,
"(0x%08x, %s, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %s, %ld): stub
\n
"
,
hProcess
,
debugstr_an
(
szSearchPath
,
SearchPathLength
),
SearchPathLength
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -115,7 +115,7 @@ BOOL WINAPI SymGetSymFromAddr(
HANDLE
hProcess
,
DWORD
dwAddr
,
PDWORD
pdwDisplacement
,
PIMAGEHLP_SYMBOL
Symbol
)
{
FIXME
(
imagehlp
,
"(0x%08x, 0x%08lx, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, 0x%08lx, %p, %p): stub
\n
"
,
hProcess
,
dwAddr
,
pdwDisplacement
,
Symbol
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -128,7 +128,7 @@ BOOL WINAPI SymGetSymFromAddr(
BOOL
WINAPI
SymGetSymFromName
(
HANDLE
hProcess
,
LPSTR
Name
,
PIMAGEHLP_SYMBOL
Symbol
)
{
FIXME
(
imagehlp
,
"(0x%08x, %s, %p): stub
\n
"
,
hProcess
,
Name
,
Symbol
);
FIXME
(
"(0x%08x, %s, %p): stub
\n
"
,
hProcess
,
Name
,
Symbol
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -139,7 +139,7 @@ BOOL WINAPI SymGetSymFromName(
BOOL
WINAPI
SymGetSymNext
(
HANDLE
hProcess
,
PIMAGEHLP_SYMBOL
Symbol
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p): stub
\n
"
,
hProcess
,
Symbol
);
FIXME
(
"(0x%08x, %p): stub
\n
"
,
hProcess
,
Symbol
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -151,7 +151,7 @@ BOOL WINAPI SymGetSymNext(
BOOL
WINAPI
SymGetSymPrev
(
HANDLE
hProcess
,
PIMAGEHLP_SYMBOL
Symbol
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p): stub
\n
"
,
hProcess
,
Symbol
);
FIXME
(
"(0x%08x, %p): stub
\n
"
,
hProcess
,
Symbol
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -162,7 +162,7 @@ BOOL WINAPI SymGetSymPrev(
BOOL
WINAPI
SymInitialize
(
HANDLE
hProcess
,
LPSTR
UserSearchPath
,
BOOL
fInvadeProcess
)
{
FIXME
(
imagehlp
,
"(0x%08x, %s, %d): stub
\n
"
,
FIXME
(
"(0x%08x, %s, %d): stub
\n
"
,
hProcess
,
debugstr_a
(
UserSearchPath
),
fInvadeProcess
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -177,7 +177,7 @@ BOOL WINAPI SymLoadModule(
HANDLE
hProcess
,
HANDLE
hFile
,
LPSTR
ImageName
,
LPSTR
ModuleName
,
DWORD
BaseOfDll
,
DWORD
SizeOfDll
)
{
FIXME
(
imagehlp
,
"(0x%08x, 0x%08x, %s, %s, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, 0x%08x, %s, %s, %ld, %ld): stub
\n
"
,
hProcess
,
hFile
,
debugstr_a
(
ImageName
),
debugstr_a
(
ModuleName
),
BaseOfDll
,
SizeOfDll
);
...
...
@@ -192,7 +192,7 @@ BOOL WINAPI SymRegisterCallback(
HANDLE
hProcess
,
PSYMBOL_REGISTERED_CALLBACK
CallbackFunction
,
PVOID
UserContext
)
{
FIXME
(
imagehlp
,
"(0x%08x, %p, %p): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p): stub
\n
"
,
hProcess
,
CallbackFunction
,
UserContext
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -204,7 +204,7 @@ BOOL WINAPI SymRegisterCallback(
*/
DWORD
WINAPI
SymSetOptions
(
DWORD
SymOptions
)
{
FIXME
(
imagehlp
,
"(%lx): stub
\n
"
,
SymOptions
);
FIXME
(
"(%lx): stub
\n
"
,
SymOptions
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
...
...
@@ -214,7 +214,7 @@ DWORD WINAPI SymSetOptions(DWORD SymOptions)
*/
BOOL
WINAPI
SymSetSearchPath
(
HANDLE
hProcess
,
LPSTR
szSearchPath
)
{
FIXME
(
imagehlp
,
"(0x%08x, %s): stub
\n
"
,
FIXME
(
"(0x%08x, %s): stub
\n
"
,
hProcess
,
debugstr_a
(
szSearchPath
)
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -227,7 +227,7 @@ BOOL WINAPI SymSetSearchPath(HANDLE hProcess, LPSTR szSearchPath)
BOOL
WINAPI
SymUnDName
(
PIMAGEHLP_SYMBOL
sym
,
LPSTR
UnDecName
,
DWORD
UnDecNameLength
)
{
FIXME
(
imagehlp
,
"(%p, %s, %ld): stub
\n
"
,
FIXME
(
"(%p, %s, %ld): stub
\n
"
,
sym
,
UnDecName
,
UnDecNameLength
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -240,7 +240,7 @@ BOOL WINAPI SymUnDName(
BOOL
WINAPI
SymUnloadModule
(
HANDLE
hProcess
,
DWORD
BaseOfDll
)
{
FIXME
(
imagehlp
,
"(0x%08x, 0x%08lx): stub
\n
"
,
hProcess
,
BaseOfDll
);
FIXME
(
"(0x%08x, 0x%08lx): stub
\n
"
,
hProcess
,
BaseOfDll
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/msacm/msacm_main.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "msacm.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
msacm
)
...
...
@@ -16,7 +16,7 @@ DEFAULT_DEBUG_CHANNEL(msacm)
*/
DWORD
WINAPI
acmGetVersion16
()
{
FIXME
(
msacm
,
"(): stub
\n
"
);
FIXME
(
"(): stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
/* FIXME */
}
...
...
@@ -28,7 +28,7 @@ DWORD WINAPI acmGetVersion16()
MMRESULT16
WINAPI
acmMetrics16
(
HACMOBJ16
hao
,
UINT16
uMetric
,
LPVOID
pMetric
)
{
FIXME
(
msacm
,
"(0x%04x, %d, %p): stub
\n
"
,
hao
,
uMetric
,
pMetric
);
FIXME
(
"(0x%04x, %d, %p): stub
\n
"
,
hao
,
uMetric
,
pMetric
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -39,7 +39,7 @@ MMRESULT16 WINAPI acmMetrics16(
MMRESULT16
WINAPI
acmDriverEnum16
(
ACMDRIVERENUMCB16
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(%p, %ld, %ld): stub
\n
"
,
FIXME
(
"(%p, %ld, %ld): stub
\n
"
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -53,7 +53,7 @@ MMRESULT16 WINAPI acmDriverEnum16(
MMRESULT16
WINAPI
acmDriverDetails16
(
HACMDRIVERID16
hadid
,
LPACMDRIVERDETAILS16
padd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
hadid
,
padd
,
fdwDetails
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
hadid
,
padd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -65,7 +65,7 @@ MMRESULT16 WINAPI acmDriverAdd16(
LPHACMDRIVERID16
phadid
,
HINSTANCE16
hinstModule
,
LPARAM
lParam
,
DWORD
dwPriority
,
DWORD
fdwAdd
)
{
FIXME
(
msacm
,
"(%p, 0x%04x, %ld, %ld, %ld): stub
\n
"
,
FIXME
(
"(%p, 0x%04x, %ld, %ld, %ld): stub
\n
"
,
phadid
,
hinstModule
,
lParam
,
dwPriority
,
fdwAdd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -78,7 +78,7 @@ MMRESULT16 WINAPI acmDriverAdd16(
MMRESULT16
WINAPI
acmDriverRemove16
(
HACMDRIVERID16
hadid
,
DWORD
fdwRemove
)
{
FIXME
(
msacm
,
"(0x%04x, %ld): stub
\n
"
,
hadid
,
fdwRemove
);
FIXME
(
"(0x%04x, %ld): stub
\n
"
,
hadid
,
fdwRemove
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -89,7 +89,7 @@ MMRESULT16 WINAPI acmDriverRemove16(
MMRESULT16
WINAPI
acmDriverOpen16
(
LPHACMDRIVER16
phad
,
HACMDRIVERID16
hadid
,
DWORD
fdwOpen
)
{
FIXME
(
msacm
,
"(%p, 0x%04x, %ld): stub
\n
"
,
phad
,
hadid
,
fdwOpen
);
FIXME
(
"(%p, 0x%04x, %ld): stub
\n
"
,
phad
,
hadid
,
fdwOpen
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -100,7 +100,7 @@ MMRESULT16 WINAPI acmDriverOpen16(
MMRESULT16
WINAPI
acmDriverClose16
(
HACMDRIVER16
had
,
DWORD
fdwClose
)
{
FIXME
(
msacm
,
"(0x%04x, %ld): stub
\n
"
,
had
,
fdwClose
);
FIXME
(
"(0x%04x, %ld): stub
\n
"
,
had
,
fdwClose
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -111,7 +111,7 @@ MMRESULT16 WINAPI acmDriverClose16(
LRESULT
WINAPI
acmDriverMessage16
(
HACMDRIVER16
had
,
UINT16
uMsg
,
LPARAM
lParam1
,
LPARAM
lParam2
)
{
FIXME
(
msacm
,
"(0x%04x, %d, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %d, %ld, %ld): stub
\n
"
,
had
,
uMsg
,
lParam1
,
lParam2
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -124,7 +124,7 @@ LRESULT WINAPI acmDriverMessage16(
MMRESULT16
WINAPI
acmDriverID16
(
HACMOBJ16
hao
,
LPHACMDRIVERID16
phadid
,
DWORD
fdwDriverID
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
hao
,
phadid
,
fdwDriverID
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
hao
,
phadid
,
fdwDriverID
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -135,7 +135,7 @@ MMRESULT16 WINAPI acmDriverID16(
MMRESULT16
WINAPI
acmDriverPriority16
(
HACMDRIVERID16
hadid
,
DWORD
dwPriority
,
DWORD
fdwPriority
)
{
FIXME
(
msacm
,
"(0x%04x, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %ld, %ld): stub
\n
"
,
hadid
,
dwPriority
,
fdwPriority
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -148,7 +148,7 @@ MMRESULT16 WINAPI acmDriverPriority16(
MMRESULT16
WINAPI
acmFormatTagDetails16
(
HACMDRIVER16
had
,
LPACMFORMATTAGDETAILS16
paftd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -160,7 +160,7 @@ MMRESULT16 WINAPI acmFormatTagEnum16(
HACMDRIVER16
had
,
LPACMFORMATTAGDETAILS16
paftd
,
ACMFORMATTAGENUMCB16
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
paftd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -173,7 +173,7 @@ MMRESULT16 WINAPI acmFormatTagEnum16(
MMRESULT16
WINAPI
acmFormatChoose16
(
LPACMFORMATCHOOSE16
pafmtc
)
{
FIXME
(
msacm
,
"(%p): stub
\n
"
,
pafmtc
);
FIXME
(
"(%p): stub
\n
"
,
pafmtc
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -184,7 +184,7 @@ MMRESULT16 WINAPI acmFormatChoose16(
MMRESULT16
WINAPI
acmFormatDetails16
(
HACMDRIVER16
had
,
LPACMFORMATDETAILS16
pafd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -196,7 +196,7 @@ MMRESULT16 WINAPI acmFormatEnum16(
HACMDRIVER16
had
,
LPACMFORMATDETAILS16
pafd
,
ACMFORMATENUMCB16
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pafd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -210,7 +210,7 @@ MMRESULT16 WINAPI acmFormatSuggest16(
HACMDRIVER16
had
,
LPWAVEFORMATEX
pwfxSrc
,
LPWAVEFORMATEX
pwfxDst
,
DWORD
cbwfxDst
,
DWORD
fdwSuggest
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pwfxSrc
,
pwfxDst
,
cbwfxDst
,
fdwSuggest
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -223,7 +223,7 @@ MMRESULT16 WINAPI acmFormatSuggest16(
MMRESULT16
WINAPI
acmFilterTagDetails16
(
HACMDRIVER16
had
,
LPACMFILTERTAGDETAILS16
paftd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -235,7 +235,7 @@ MMRESULT16 WINAPI acmFilterTagEnum16(
HACMDRIVER16
had
,
LPACMFILTERTAGDETAILS16
paftd
,
ACMFILTERTAGENUMCB16
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
paftd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -248,7 +248,7 @@ MMRESULT16 WINAPI acmFilterTagEnum16(
MMRESULT16
WINAPI
acmFilterChoose16
(
LPACMFILTERCHOOSE16
pafltrc
)
{
FIXME
(
msacm
,
"(%p): stub
\n
"
,
pafltrc
);
FIXME
(
"(%p): stub
\n
"
,
pafltrc
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -259,7 +259,7 @@ MMRESULT16 WINAPI acmFilterChoose16(
MMRESULT16
WINAPI
acmFilterDetails16
(
HACMDRIVER16
had
,
LPACMFILTERDETAILS16
pafd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -271,7 +271,7 @@ MMRESULT16 WINAPI acmFilterEnum16(
HACMDRIVER16
had
,
LPACMFILTERDETAILS16
pafd
,
ACMFILTERENUMCB16
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pafd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -287,7 +287,7 @@ MMRESULT16 WINAPI acmStreamOpen16(
LPWAVEFILTER
pwfltr
,
DWORD
dwCallback
,
DWORD
dwInstance
,
DWORD
fdwOpen
)
{
FIXME
(
msacm
,
"(%p, 0x%04x, %p, %p, %p, %ld, %ld, %ld): stub
\n
"
,
FIXME
(
"(%p, 0x%04x, %p, %p, %p, %ld, %ld, %ld): stub
\n
"
,
phas
,
had
,
pwfxSrc
,
pwfxDst
,
pwfltr
,
dwCallback
,
dwInstance
,
fdwOpen
);
...
...
@@ -301,7 +301,7 @@ MMRESULT16 WINAPI acmStreamOpen16(
MMRESULT16
WINAPI
acmStreamClose16
(
HACMSTREAM16
has
,
DWORD
fdwClose
)
{
FIXME
(
msacm
,
"(0x%04x, %ld): stub
\n
"
,
has
,
fdwClose
);
FIXME
(
"(0x%04x, %ld): stub
\n
"
,
has
,
fdwClose
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -313,7 +313,7 @@ MMRESULT16 WINAPI acmStreamSize16(
HACMSTREAM16
has
,
DWORD
cbInput
,
LPDWORD
pdwOutputBytes
,
DWORD
fdwSize
)
{
FIXME
(
msacm
,
"(0x%04x, %ld, %p, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %ld, %p, %ld): stub
\n
"
,
has
,
cbInput
,
pdwOutputBytes
,
fdwSize
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -326,7 +326,7 @@ MMRESULT16 WINAPI acmStreamSize16(
MMRESULT16
WINAPI
acmStreamConvert16
(
HACMSTREAM16
has
,
LPACMSTREAMHEADER16
pash
,
DWORD
fdwConvert
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwConvert
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwConvert
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -337,7 +337,7 @@ MMRESULT16 WINAPI acmStreamConvert16(
MMRESULT16
WINAPI
acmStreamReset16
(
HACMSTREAM16
has
,
DWORD
fdwReset
)
{
FIXME
(
msacm
,
"(0x%04x, %ld): stub
\n
"
,
has
,
fdwReset
);
FIXME
(
"(0x%04x, %ld): stub
\n
"
,
has
,
fdwReset
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -348,7 +348,7 @@ MMRESULT16 WINAPI acmStreamReset16(
MMRESULT16
WINAPI
acmStreamPrepareHeader16
(
HACMSTREAM16
has
,
LPACMSTREAMHEADER16
pash
,
DWORD
fdwPrepare
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwPrepare
);
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwPrepare
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -359,7 +359,7 @@ MMRESULT16 WINAPI acmStreamPrepareHeader16(
MMRESULT16
WINAPI
acmStreamUnprepareHeader16
(
HACMSTREAM16
has
,
LPACMSTREAMHEADER16
pash
,
DWORD
fdwUnprepare
)
{
FIXME
(
msacm
,
"(0x%04x, %p, %ld): stub
\n
"
,
FIXME
(
"(0x%04x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwUnprepare
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/msacm32/builtin.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "driver.h"
#include "heap.h"
#include "mmsystem.h"
...
...
dlls/msacm32/driver.c
View file @
9fe7a254
...
...
@@ -8,7 +8,7 @@
#include "winerror.h"
#include "windef.h"
#include "winuser.h"
#include "debug.h"
#include "debug
tools
.h"
#include "driver.h"
#include "heap.h"
#include "mmsystem.h"
...
...
@@ -59,7 +59,7 @@ MMRESULT WINAPI acmDriverAddW(
PHACMDRIVERID
phadid
,
HINSTANCE
hinstModule
,
LPARAM
lParam
,
DWORD
dwPriority
,
DWORD
fdwAdd
)
{
FIXME
(
msacm
,
"(%p, 0x%08x, %ld, %ld, %ld): stub
\n
"
,
FIXME
(
"(%p, 0x%08x, %ld, %ld, %ld): stub
\n
"
,
phadid
,
hinstModule
,
lParam
,
dwPriority
,
fdwAdd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -143,7 +143,7 @@ MMRESULT WINAPI acmDriverDetailsA(
MMRESULT
WINAPI
acmDriverDetailsW
(
HACMDRIVERID
hadid
,
PACMDRIVERDETAILSW
padd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
hadid
,
padd
,
fdwDetails
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
hadid
,
padd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -241,7 +241,7 @@ MMRESULT WINAPI acmDriverOpen(
if
(
padid
->
pACMDriver
)
{
/* FIXME: Is it allowed? */
ERR
(
msacm
,
"Can't open driver twice
\n
"
);
ERR
(
"Can't open driver twice
\n
"
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -319,7 +319,7 @@ MMRESULT WINAPI acmDriverPriority(
if
(
lError
!=
ERROR_SUCCESS
)
break
;
FIXME
(
msacm
,
"(0x%08x, %ld, %ld): stub (partial)
\n
"
,
FIXME
(
"(0x%08x, %ld, %ld): stub (partial)
\n
"
,
hadid
,
dwPriority
,
fdwPriority
);
break
;
...
...
dlls/msacm32/filter.c
View file @
9fe7a254
...
...
@@ -9,7 +9,7 @@
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
msacm
)
...
...
@@ -19,7 +19,7 @@ DEFAULT_DEBUG_CHANNEL(msacm)
MMRESULT
WINAPI
acmFilterChooseA
(
PACMFILTERCHOOSEA
pafltrc
)
{
FIXME
(
msacm
,
"(%p): stub
\n
"
,
pafltrc
);
FIXME
(
"(%p): stub
\n
"
,
pafltrc
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -30,7 +30,7 @@ MMRESULT WINAPI acmFilterChooseA(
MMRESULT
WINAPI
acmFilterChooseW
(
PACMFILTERCHOOSEW
pafltrc
)
{
FIXME
(
msacm
,
"(%p): stub
\n
"
,
pafltrc
);
FIXME
(
"(%p): stub
\n
"
,
pafltrc
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -61,7 +61,7 @@ MMRESULT WINAPI acmFilterDetailsA(
MMRESULT
WINAPI
acmFilterDetailsW
(
HACMDRIVER
had
,
PACMFILTERDETAILSW
pafd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -73,7 +73,7 @@ MMRESULT WINAPI acmFilterEnumA(
HACMDRIVER
had
,
PACMFILTERDETAILSA
pafd
,
ACMFILTERENUMCBA
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pafd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -87,7 +87,7 @@ MMRESULT WINAPI acmFilterEnumW(
HACMDRIVER
had
,
PACMFILTERDETAILSW
pafd
,
ACMFILTERENUMCBW
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pafd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -122,7 +122,7 @@ MMRESULT WINAPI acmFilterTagDetailsA(
MMRESULT
WINAPI
acmFilterTagDetailsW
(
HACMDRIVER
had
,
PACMFILTERTAGDETAILSW
paftd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -134,7 +134,7 @@ MMRESULT WINAPI acmFilterTagEnumA(
HACMDRIVER
had
,
PACMFILTERTAGDETAILSA
paftd
,
ACMFILTERTAGENUMCBA
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
paftd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -148,7 +148,7 @@ MMRESULT WINAPI acmFilterTagEnumW(
HACMDRIVER
had
,
PACMFILTERTAGDETAILSW
paftd
,
ACMFILTERTAGENUMCBW
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
paftd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/msacm32/format.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
...
...
@@ -20,7 +20,7 @@ DEFAULT_DEBUG_CHANNEL(msacm)
MMRESULT
WINAPI
acmFormatChooseA
(
PACMFORMATCHOOSEA
pafmtc
)
{
FIXME
(
msacm
,
"(%p): stub
\n
"
,
pafmtc
);
FIXME
(
"(%p): stub
\n
"
,
pafmtc
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -31,7 +31,7 @@ MMRESULT WINAPI acmFormatChooseA(
MMRESULT
WINAPI
acmFormatChooseW
(
PACMFORMATCHOOSEW
pafmtc
)
{
FIXME
(
msacm
,
"(%p): stub
\n
"
,
pafmtc
);
FIXME
(
"(%p): stub
\n
"
,
pafmtc
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -62,7 +62,7 @@ MMRESULT WINAPI acmFormatDetailsA(
MMRESULT
WINAPI
acmFormatDetailsW
(
HACMDRIVER
had
,
PACMFORMATDETAILSW
pafd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
pafd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -74,7 +74,7 @@ MMRESULT WINAPI acmFormatEnumA(
HACMDRIVER
had
,
PACMFORMATDETAILSA
pafd
,
ACMFORMATENUMCBA
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pafd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -88,7 +88,7 @@ MMRESULT WINAPI acmFormatEnumW(
HACMDRIVER
had
,
PACMFORMATDETAILSW
pafd
,
ACMFORMATENUMCBW
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pafd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -102,7 +102,7 @@ MMRESULT WINAPI acmFormatSuggest(
HACMDRIVER
had
,
PWAVEFORMATEX
pwfxSrc
,
PWAVEFORMATEX
pwfxDst
,
DWORD
cbwfxDst
,
DWORD
fdwSuggest
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
pwfxSrc
,
pwfxDst
,
cbwfxDst
,
fdwSuggest
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -136,7 +136,7 @@ MMRESULT WINAPI acmFormatTagDetailsA(
MMRESULT
WINAPI
acmFormatTagDetailsW
(
HACMDRIVER
had
,
PACMFORMATTAGDETAILSW
paftd
,
DWORD
fdwDetails
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
had
,
paftd
,
fdwDetails
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -148,7 +148,7 @@ MMRESULT WINAPI acmFormatTagEnumA(
HACMDRIVER
had
,
PACMFORMATTAGDETAILSA
paftd
,
ACMFORMATTAGENUMCBA
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
paftd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -162,7 +162,7 @@ MMRESULT WINAPI acmFormatTagEnumW(
HACMDRIVER
had
,
PACMFORMATTAGDETAILSW
paftd
,
ACMFORMATTAGENUMCBW
fnCallback
,
DWORD
dwInstance
,
DWORD
fdwEnum
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %p, %ld, %ld): stub
\n
"
,
had
,
paftd
,
fnCallback
,
dwInstance
,
fdwEnum
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/msacm32/internal.c
View file @
9fe7a254
...
...
@@ -12,7 +12,7 @@
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
#include "debug.h"
#include "debug
tools
.h"
/**********************************************************************/
...
...
dlls/msacm32/msacm32_main.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "msacm.h"
#include "msacmdrv.h"
#include "winversion.h"
...
...
@@ -67,7 +67,7 @@ DWORD WINAPI acmGetVersion()
switch
(
VERSION_GetVersion
())
{
default:
FIXME
(
msacm
,
"%s not supported
\n
"
,
VERSION_GetVersionName
());
FIXME
(
"%s not supported
\n
"
,
VERSION_GetVersionName
());
case
WIN95
:
return
0x04000000
;
/* 4.0.0 */
case
NT40
:
...
...
@@ -90,7 +90,7 @@ MMRESULT WINAPI acmMetrics(
PWINE_ACMOBJ
pao
=
MSACM_GetObj
(
hao
);
BOOL
bLocal
=
TRUE
;
FIXME
(
msacm
,
"(0x%08x, %d, %p): stub
\n
"
,
hao
,
uMetric
,
pMetric
);
FIXME
(
"(0x%08x, %d, %p): stub
\n
"
,
hao
,
uMetric
,
pMetric
);
switch
(
uMetric
)
{
...
...
dlls/msacm32/stream.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
#include "debug.h"
#include "debug
tools
.h"
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
...
...
@@ -20,7 +20,7 @@ DEFAULT_DEBUG_CHANNEL(msacm)
MMRESULT
WINAPI
acmStreamClose
(
HACMSTREAM
has
,
DWORD
fdwClose
)
{
FIXME
(
msacm
,
"(0x%08x, %ld): stub
\n
"
,
has
,
fdwClose
);
FIXME
(
"(0x%08x, %ld): stub
\n
"
,
has
,
fdwClose
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -31,7 +31,7 @@ MMRESULT WINAPI acmStreamClose(
MMRESULT
WINAPI
acmStreamConvert
(
HACMSTREAM
has
,
PACMSTREAMHEADER
pash
,
DWORD
fdwConvert
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwConvert
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwConvert
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -42,7 +42,7 @@ MMRESULT WINAPI acmStreamConvert(
MMRESULT
WINAPI
acmStreamMessage
(
HACMSTREAM
has
,
UINT
uMsg
,
LPARAM
lParam1
,
LPARAM
lParam2
)
{
FIXME
(
msacm
,
"(0x%08x, %u, %ld, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %u, %ld, %ld): stub
\n
"
,
has
,
uMsg
,
lParam1
,
lParam2
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -57,7 +57,7 @@ MMRESULT WINAPI acmStreamOpen(
PWAVEFORMATEX
pwfxDst
,
PWAVEFILTER
pwfltr
,
DWORD
dwCallback
,
DWORD
dwInstance
,
DWORD
fdwOpen
)
{
FIXME
(
msacm
,
"(%p, 0x%08x, %p, %p, %p, %ld, %ld, %ld): stub
\n
"
,
FIXME
(
"(%p, 0x%08x, %p, %p, %p, %ld, %ld, %ld): stub
\n
"
,
phas
,
had
,
pwfxSrc
,
pwfxDst
,
pwfltr
,
dwCallback
,
dwInstance
,
fdwOpen
);
...
...
@@ -72,7 +72,7 @@ MMRESULT WINAPI acmStreamOpen(
MMRESULT
WINAPI
acmStreamPrepareHeader
(
HACMSTREAM
has
,
PACMSTREAMHEADER
pash
,
DWORD
fdwPrepare
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwPrepare
);
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwPrepare
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -83,7 +83,7 @@ MMRESULT WINAPI acmStreamPrepareHeader(
MMRESULT
WINAPI
acmStreamReset
(
HACMSTREAM
has
,
DWORD
fdwReset
)
{
FIXME
(
msacm
,
"(0x%08x, %ld): stub
\n
"
,
has
,
fdwReset
);
FIXME
(
"(0x%08x, %ld): stub
\n
"
,
has
,
fdwReset
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
MMSYSERR_ERROR
;
}
...
...
@@ -95,7 +95,7 @@ MMRESULT WINAPI acmStreamSize(
HACMSTREAM
has
,
DWORD
cbInput
,
LPDWORD
pdwOutputBytes
,
DWORD
fdwSize
)
{
FIXME
(
msacm
,
"(0x%08x, %ld, %p, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %ld, %p, %ld): stub
\n
"
,
has
,
cbInput
,
pdwOutputBytes
,
fdwSize
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
@@ -108,7 +108,7 @@ MMRESULT WINAPI acmStreamSize(
MMRESULT
WINAPI
acmStreamUnprepareHeader
(
HACMSTREAM
has
,
PACMSTREAMHEADER
pash
,
DWORD
fdwUnprepare
)
{
FIXME
(
msacm
,
"(0x%08x, %p, %ld): stub
\n
"
,
FIXME
(
"(0x%08x, %p, %ld): stub
\n
"
,
has
,
pash
,
fdwUnprepare
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
dlls/psapi/psapi_main.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "windef.h"
#include "winerror.h"
#include "debug.h"
#include "debug
tools
.h"
#include "psapi.h"
DEFAULT_DEBUG_CHANNEL
(
psapi
)
...
...
@@ -28,7 +28,7 @@ BOOL WINAPI EmptyWorkingSet(HANDLE hProcess)
BOOL
WINAPI
EnumDeviceDrivers
(
LPVOID
*
lpImageBase
,
DWORD
cb
,
LPDWORD
lpcbNeeded
)
{
FIXME
(
psapi
,
"(%p, %ld, %p): stub
\n
"
,
lpImageBase
,
cb
,
lpcbNeeded
);
FIXME
(
"(%p, %ld, %p): stub
\n
"
,
lpImageBase
,
cb
,
lpcbNeeded
);
if
(
lpcbNeeded
)
*
lpcbNeeded
=
0
;
...
...
@@ -42,7 +42,7 @@ BOOL WINAPI EnumDeviceDrivers(
*/
BOOL
WINAPI
EnumProcesses
(
DWORD
*
lpidProcess
,
DWORD
cb
,
DWORD
*
lpcbNeeded
)
{
FIXME
(
psapi
,
"(%p, %ld, %p): stub
\n
"
,
lpidProcess
,
cb
,
lpcbNeeded
);
FIXME
(
"(%p, %ld, %p): stub
\n
"
,
lpidProcess
,
cb
,
lpcbNeeded
);
if
(
lpcbNeeded
)
*
lpcbNeeded
=
0
;
...
...
@@ -56,7 +56,7 @@ BOOL WINAPI EnumProcesses(DWORD *lpidProcess, DWORD cb, DWORD *lpcbNeeded)
BOOL
WINAPI
EnumProcessModules
(
HANDLE
hProcess
,
HMODULE
*
lphModule
,
DWORD
cb
,
LPDWORD
lpcbNeeded
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, %p, %ld, %p): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, %p, %ld, %p): stub
\n
"
,
hProcess
,
lphModule
,
cb
,
lpcbNeeded
);
...
...
@@ -72,7 +72,7 @@ BOOL WINAPI EnumProcessModules(
DWORD
WINAPI
GetDeviceDriverBaseNameA
(
LPVOID
ImageBase
,
LPSTR
lpBaseName
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(%p, %s, %ld): stub
\n
"
,
FIXME
(
"(%p, %s, %ld): stub
\n
"
,
ImageBase
,
debugstr_a
(
lpBaseName
),
nSize
);
...
...
@@ -88,7 +88,7 @@ DWORD WINAPI GetDeviceDriverBaseNameA(
DWORD
WINAPI
GetDeviceDriverBaseNameW
(
LPVOID
ImageBase
,
LPWSTR
lpBaseName
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(%p, %s, %ld): stub
\n
"
,
FIXME
(
"(%p, %s, %ld): stub
\n
"
,
ImageBase
,
debugstr_w
(
lpBaseName
),
nSize
);
...
...
@@ -104,7 +104,7 @@ DWORD WINAPI GetDeviceDriverBaseNameW(
DWORD
WINAPI
GetDeviceDriverFileNameA
(
LPVOID
ImageBase
,
LPSTR
lpFilename
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(%p, %s, %ld): stub
\n
"
,
FIXME
(
"(%p, %s, %ld): stub
\n
"
,
ImageBase
,
debugstr_a
(
lpFilename
),
nSize
);
...
...
@@ -120,7 +120,7 @@ DWORD WINAPI GetDeviceDriverFileNameA(
DWORD
WINAPI
GetDeviceDriverFileNameW
(
LPVOID
ImageBase
,
LPWSTR
lpFilename
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(%p, %s, %ld): stub
\n
"
,
FIXME
(
"(%p, %s, %ld): stub
\n
"
,
ImageBase
,
debugstr_w
(
lpFilename
),
nSize
);
...
...
@@ -136,7 +136,7 @@ DWORD WINAPI GetDeviceDriverFileNameW(
DWORD
WINAPI
GetMappedFileNameA
(
HANDLE
hProcess
,
LPVOID
lpv
,
LPSTR
lpFilename
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, %p, %s, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, %p, %s, %ld): stub
\n
"
,
hProcess
,
lpv
,
debugstr_a
(
lpFilename
),
nSize
);
...
...
@@ -152,7 +152,7 @@ DWORD WINAPI GetMappedFileNameA(
DWORD
WINAPI
GetMappedFileNameW
(
HANDLE
hProcess
,
LPVOID
lpv
,
LPWSTR
lpFilename
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, %p, %s, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, %p, %s, %ld): stub
\n
"
,
hProcess
,
lpv
,
debugstr_w
(
lpFilename
),
nSize
);
...
...
@@ -168,7 +168,7 @@ DWORD WINAPI GetMappedFileNameW(
DWORD
WINAPI
GetModuleBaseNameA
(
HANDLE
hProcess
,
HMODULE
hModule
,
LPSTR
lpBaseName
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub
\n
"
,
hProcess
,
hModule
,
debugstr_a
(
lpBaseName
),
nSize
);
...
...
@@ -184,7 +184,7 @@ DWORD WINAPI GetModuleBaseNameA(
DWORD
WINAPI
GetModuleBaseNameW
(
HANDLE
hProcess
,
HMODULE
hModule
,
LPWSTR
lpBaseName
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub
\n
"
,
hProcess
,
hModule
,
debugstr_w
(
lpBaseName
),
nSize
);
if
(
lpBaseName
&&
nSize
)
...
...
@@ -199,7 +199,7 @@ DWORD WINAPI GetModuleBaseNameW(
DWORD
WINAPI
GetModuleFileNameExA
(
HANDLE
hProcess
,
HMODULE
hModule
,
LPSTR
lpFilename
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub
\n
"
,
hProcess
,
hModule
,
debugstr_a
(
lpFilename
),
nSize
);
...
...
@@ -215,7 +215,7 @@ DWORD WINAPI GetModuleFileNameExA(
DWORD
WINAPI
GetModuleFileNameExW
(
HANDLE
hProcess
,
HMODULE
hModule
,
LPWSTR
lpFilename
,
DWORD
nSize
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub
\n
"
,
hProcess
,
hModule
,
debugstr_w
(
lpFilename
),
nSize
);
...
...
@@ -231,7 +231,7 @@ DWORD WINAPI GetModuleFileNameExW(
BOOL
WINAPI
GetModuleInformation
(
HANDLE
hProcess
,
HMODULE
hModule
,
LPMODULEINFO
lpmodinfo
,
DWORD
cb
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, hModule=0x%08x, %p, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, hModule=0x%08x, %p, %ld): stub
\n
"
,
hProcess
,
hModule
,
lpmodinfo
,
cb
);
...
...
@@ -246,7 +246,7 @@ BOOL WINAPI GetModuleInformation(
BOOL
WINAPI
GetProcessMemoryInfo
(
HANDLE
Process
,
PPROCESS_MEMORY_COUNTERS
ppsmemCounters
,
DWORD
cb
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, %p, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, %p, %ld): stub
\n
"
,
Process
,
ppsmemCounters
,
cb
);
...
...
@@ -261,7 +261,7 @@ BOOL WINAPI GetProcessMemoryInfo(
BOOL
WINAPI
GetWsChanges
(
HANDLE
hProcess
,
PPSAPI_WS_WATCH_INFORMATION
lpWatchInfo
,
DWORD
cb
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, %p, %ld): stub
\n
"
,
FIXME
(
"(hProcess=0x%08x, %p, %ld): stub
\n
"
,
hProcess
,
lpWatchInfo
,
cb
);
...
...
@@ -275,7 +275,7 @@ BOOL WINAPI GetWsChanges(
*/
BOOL
WINAPI
InitializeProcessForWsWatch
(
HANDLE
hProcess
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x): stub
\n
"
,
hProcess
);
FIXME
(
"(hProcess=0x%08x): stub
\n
"
,
hProcess
);
return
TRUE
;
}
...
...
@@ -288,7 +288,7 @@ BOOL WINAPI InitializeProcessForWsWatch(HANDLE hProcess)
*/
BOOL
WINAPI
QueryWorkingSet
(
HANDLE
hProcess
,
LPVOID
pv
,
DWORD
cb
)
{
FIXME
(
psapi
,
"(hProcess=0x%08x, %p, %ld)"
,
hProcess
,
pv
,
cb
);
FIXME
(
"(hProcess=0x%08x, %p, %ld)"
,
hProcess
,
pv
,
cb
);
if
(
pv
&&
cb
)
((
DWORD
*
)
pv
)[
0
]
=
0
;
/* Empty WorkingSet */
...
...
dlls/rasapi32/rasapi.c
View file @
9fe7a254
...
...
@@ -6,7 +6,7 @@
#include "windef.h"
#include "ras.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
ras
)
...
...
@@ -15,6 +15,6 @@ DEFAULT_DEBUG_CHANNEL(ras)
*/
DWORD
WINAPI
RasEnumConnectionsA
(
LPRASCONNA
rca
,
LPDWORD
x
,
LPDWORD
y
)
{
/* Remote Access Service stuff is done by underlying OS anyway */
FIXME
(
ras
,
"(%p,%p,%p),stub!
\n
"
,
rca
,
x
,
y
);
FIXME
(
"(%p,%p,%p),stub!
\n
"
,
rca
,
x
,
y
);
return
0
;
}
dlls/tapi32/assisted.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "windef.h"
#include "tapi.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
tapi
)
...
...
@@ -15,7 +15,7 @@ DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
{
char
temp
[
30
];
FIXME
(
tapi
,
"(%s, %s): file sections ???
\n
"
,
lpszCountryCode
,
lpszCityCode
);
FIXME
(
"(%s, %s): file sections ???
\n
"
,
lpszCountryCode
,
lpszCityCode
);
if
(
!
(
GetPrivateProfileStringA
(
"Locations"
,
"CurrentLocation"
,
""
,
temp
,
30
,
"telephon.ini"
)))
return
TAPIERR_REQUESTFAILED
;
if
(
!
(
GetPrivateProfileStringA
(
"Locations"
,
"FIXME_ENTRY"
,
""
,
lpszCityCode
,
8
,
"telephon.ini"
)))
...
...
@@ -26,6 +26,6 @@ DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
DWORD
WINAPI
tapiRequestMakeCall
(
LPCSTR
lpszDestAddress
,
LPCSTR
lpszAppName
,
LPCSTR
lpszCalledParty
,
LPCSTR
lpszComment
)
{
FIXME
(
tapi
,
"(%s, %s, %s, %s): stub.
\n
"
,
lpszDestAddress
,
lpszAppName
,
lpszCalledParty
,
lpszComment
);
FIXME
(
"(%s, %s, %s, %s): stub.
\n
"
,
lpszDestAddress
,
lpszAppName
,
lpszCalledParty
,
lpszComment
);
return
0
;
}
dlls/tapi32/phone.c
View file @
9fe7a254
...
...
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "windef.h"
#include "tapi.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
tapi
)
...
...
@@ -23,115 +23,115 @@ static LPPHONE PHONE_Get(HPHONE hPhone)
DWORD
WINAPI
phoneClose
(
HPHONE
hPhone
)
{
FIXME
(
tapi
,
"(%04x), stub.
\n
"
,
hPhone
);
FIXME
(
"(%04x), stub.
\n
"
,
hPhone
);
return
0
;
}
DWORD
WINAPI
phoneConfigDialog
(
DWORD
dwDeviceID
,
HWND
hwndOwner
,
LPCSTR
lpszDeviceClass
)
{
FIXME
(
tapi
,
"(%08lx, %04x, %s): stub.
\n
"
,
dwDeviceID
,
hwndOwner
,
lpszDeviceClass
);
FIXME
(
"(%08lx, %04x, %s): stub.
\n
"
,
dwDeviceID
,
hwndOwner
,
lpszDeviceClass
);
return
0
;
}
DWORD
WINAPI
phoneDevSpecific
(
HPHONE
hPhone
,
LPVOID
lpParams
,
DWORD
dwSize
)
{
FIXME
(
tapi
,
"(%04x, %p, %08ld): stub.
\n
"
,
hPhone
,
lpParams
,
dwSize
);
FIXME
(
"(%04x, %p, %08ld): stub.
\n
"
,
hPhone
,
lpParams
,
dwSize
);
return
1
;
}
DWORD
WINAPI
phoneGetButtonInfo
(
HPHONE
hPhone
,
DWORD
dwButtonLampID
,
LPPHONEBUTTONINFO
lpButtonInfo
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpButtonInfo
);
FIXME
(
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpButtonInfo
);
return
0
;
}
DWORD
WINAPI
phoneGetData
(
HPHONE
hPhone
,
DWORD
dwDataID
,
LPVOID
lpData
,
DWORD
dwSize
)
{
FIXME
(
tapi
,
"(%04x, %08ld, %p, %08ld): stub.
\n
"
,
hPhone
,
dwDataID
,
lpData
,
dwSize
);
FIXME
(
"(%04x, %08ld, %p, %08ld): stub.
\n
"
,
hPhone
,
dwDataID
,
lpData
,
dwSize
);
return
0
;
}
DWORD
WINAPI
phoneGetDevCaps
(
HPHONEAPP
hPhoneApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
LPPHONECAPS
lpPhoneCaps
)
{
FIXME
(
tapi
,
"(%04x, %08ld, %08lx, %08lx, %p): stub.
\n
"
,
hPhoneApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpPhoneCaps
);
FIXME
(
"(%04x, %08ld, %08lx, %08lx, %p): stub.
\n
"
,
hPhoneApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpPhoneCaps
);
return
0
;
}
DWORD
WINAPI
phoneGetDisplay
(
HPHONE
hPhone
,
LPVARSTRING
lpDisplay
)
{
FIXME
(
tapi
,
"(%04x, %p): stub.
\n
"
,
hPhone
,
lpDisplay
);
FIXME
(
"(%04x, %p): stub.
\n
"
,
hPhone
,
lpDisplay
);
return
0
;
}
DWORD
WINAPI
phoneGetGain
(
HPHONE
hPhone
,
DWORD
dwHookSwitchDev
,
LPDWORD
lpdwGain
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
lpdwGain
);
FIXME
(
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
lpdwGain
);
return
0
;
}
DWORD
WINAPI
phoneGetHookSwitch
(
HPHONE
hPhone
,
LPDWORD
lpdwHookSwitchDevs
)
{
FIXME
(
tapi
,
"(%04x, %p): stub.
\n
"
,
hPhone
,
lpdwHookSwitchDevs
);
FIXME
(
"(%04x, %p): stub.
\n
"
,
hPhone
,
lpdwHookSwitchDevs
);
return
0
;
}
DWORD
WINAPI
phoneGetID
(
HPHONE
hPhone
,
LPVARSTRING
lpDeviceID
,
LPCSTR
lpszDeviceClass
)
{
FIXME
(
tapi
,
"(%04x, %p, %s): stub.
\n
"
,
hPhone
,
lpDeviceID
,
lpszDeviceClass
);
return
0
;
FIXME
(
"(%04x, %p, %s): stub.
\n
"
,
hPhone
,
lpDeviceID
,
lpszDeviceClass
);
return
0
;
}
DWORD
WINAPI
phoneGetIcon
(
DWORD
dwDeviceID
,
LPCSTR
lpszDeviceClass
,
HICON
*
lphIcon
)
{
FIXME
(
tapi
,
"(%08lx, %s, %p): stub.
\n
"
,
dwDeviceID
,
lpszDeviceClass
,
lphIcon
);
FIXME
(
"(%08lx, %s, %p): stub.
\n
"
,
dwDeviceID
,
lpszDeviceClass
,
lphIcon
);
return
0
;
}
DWORD
WINAPI
phoneGetLamp
(
HPHONE
hPhone
,
DWORD
dwButtonLampID
,
LPDWORD
lpdwLampMode
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpdwLampMode
);
FIXME
(
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpdwLampMode
);
return
0
;
}
DWORD
WINAPI
phoneGetRing
(
HPHONE
hPhone
,
LPDWORD
lpdwRingMode
,
LPDWORD
lpdwVolume
)
{
FIXME
(
tapi
,
"(%04x, %p, %p): stub.
\n
"
,
hPhone
,
lpdwRingMode
,
lpdwVolume
);
FIXME
(
"(%04x, %p, %p): stub.
\n
"
,
hPhone
,
lpdwRingMode
,
lpdwVolume
);
return
0
;
}
DWORD
WINAPI
phoneGetStatus
(
HPHONE
hPhone
,
LPPHONESTATUS
lpPhoneStatus
)
{
FIXME
(
tapi
,
"(%04x, %p): stub.
\n
"
,
hPhone
,
lpPhoneStatus
);
FIXME
(
"(%04x, %p): stub.
\n
"
,
hPhone
,
lpPhoneStatus
);
return
0
;
}
DWORD
WINAPI
phoneGetStatusMessages
(
HPHONE
hPhone
,
LPDWORD
lpdwPhoneStates
,
LPDWORD
lpdwButtonModes
,
LPDWORD
lpdwButtonStates
)
{
FIXME
(
tapi
,
"(%04x, %p, %p, %p): stub.
\n
"
,
hPhone
,
lpdwPhoneStates
,
lpdwButtonModes
,
lpdwButtonStates
);
FIXME
(
"(%04x, %p, %p, %p): stub.
\n
"
,
hPhone
,
lpdwPhoneStates
,
lpdwButtonModes
,
lpdwButtonStates
);
return
0
;
}
DWORD
WINAPI
phoneGetVolume
(
HPHONE
hPhone
,
DWORD
dwHookSwitchDevs
,
LPDWORD
lpdwVolume
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwHookSwitchDevs
,
lpdwVolume
);
FIXME
(
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwHookSwitchDevs
,
lpdwVolume
);
return
0
;
}
DWORD
WINAPI
phoneInitialize
(
LPHPHONEAPP
lphPhoneApp
,
HINSTANCE
hInstance
,
PHONECALLBACK
lpfnCallback
,
LPCSTR
lpszAppName
,
LPDWORD
lpdwNumDevs
)
{
FIXME
(
tapi
,
"(%p, %04x, %p, %s, %p): stub.
\n
"
,
lphPhoneApp
,
hInstance
,
lpfnCallback
,
lpszAppName
,
lpdwNumDevs
);
FIXME
(
"(%p, %04x, %p, %s, %p): stub.
\n
"
,
lphPhoneApp
,
hInstance
,
lpfnCallback
,
lpszAppName
,
lpdwNumDevs
);
return
0
;
}
DWORD
WINAPI
phoneNegotiateAPIVersion
(
HPHONEAPP
hPhoneApp
,
DWORD
dwDeviceID
,
DWORD
dwAPILowVersion
,
DWORD
dwAPIHighVersion
,
LPDWORD
lpdwAPIVersion
,
LPPHONEEXTENSIONID
lpExtensionID
)
{
FIXME
(
tapi
,
"(): stub.
\n
"
);
FIXME
(
"(): stub.
\n
"
);
return
0
;
}
...
...
@@ -139,72 +139,72 @@ DWORD WINAPI phoneNegotiateExtVersion(HPHONEAPP hPhoneApp, DWORD dwDeviceID,
DWORD
dwAPIVersion
,
DWORD
dwExtLowVersion
,
DWORD
dwExtHighVersion
,
LPDWORD
lpdwExtVersion
)
{
FIXME
(
tapi
,
"(): stub.
\n
"
);
FIXME
(
"(): stub.
\n
"
);
return
0
;
}
DWORD
WINAPI
phoneOpen
(
HPHONEAPP
hPhoneApp
,
DWORD
dwDeviceID
,
LPHPHONE
lphPhone
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
DWORD
dwCallbackInstance
,
DWORD
dwPrivileges
)
{
FIXME
(
tapi
,
"(): stub.
\n
"
);
FIXME
(
"(): stub.
\n
"
);
return
0
;
}
DWORD
WINAPI
phoneSetButtonInfo
(
HPHONE
hPhone
,
DWORD
dwButtonLampID
,
LPPHONEBUTTONINFO
lpButtonInfo
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpButtonInfo
);
FIXME
(
"(%04x, %08lx, %p): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpButtonInfo
);
return
0
;
}
DWORD
WINAPI
phoneSetData
(
HPHONE
hPhone
,
DWORD
dwDataID
,
LPVOID
lpData
,
DWORD
dwSize
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %p, %ld): stub.
\n
"
,
hPhone
,
dwDataID
,
lpData
,
dwSize
);
FIXME
(
"(%04x, %08lx, %p, %ld): stub.
\n
"
,
hPhone
,
dwDataID
,
lpData
,
dwSize
);
return
1
;
}
DWORD
WINAPI
phoneSetDisplay
(
HPHONE
hPhone
,
DWORD
dwRow
,
DWORD
dwColumn
,
LPCSTR
lpszDisplay
,
DWORD
dwSize
)
{
FIXME
(
tapi
,
"(%04x, '%s' at %ld/%ld, len %ld): stub.
\n
"
,
hPhone
,
lpszDisplay
,
dwRow
,
dwColumn
,
dwSize
);
FIXME
(
"(%04x, '%s' at %ld/%ld, len %ld): stub.
\n
"
,
hPhone
,
lpszDisplay
,
dwRow
,
dwColumn
,
dwSize
);
return
1
;
}
DWORD
WINAPI
phoneSetGain
(
HPHONE
hPhone
,
DWORD
dwHookSwitchDev
,
DWORD
dwGain
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %ld): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
dwGain
);
FIXME
(
"(%04x, %08lx, %ld): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
dwGain
);
return
1
;
}
DWORD
WINAPI
phoneSetHookSwitch
(
HPHONE
hPhone
,
DWORD
dwHookSwitchDevs
,
DWORD
dwHookSwitchMode
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %08lx): stub.
\n
"
,
hPhone
,
dwHookSwitchDevs
,
dwHookSwitchMode
);
FIXME
(
"(%04x, %08lx, %08lx): stub.
\n
"
,
hPhone
,
dwHookSwitchDevs
,
dwHookSwitchMode
);
return
1
;
}
DWORD
WINAPI
phoneSetLamp
(
HPHONE
hPhone
,
DWORD
dwButtonLampID
,
DWORD
lpdwLampMode
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %08lx): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpdwLampMode
);
FIXME
(
"(%04x, %08lx, %08lx): stub.
\n
"
,
hPhone
,
dwButtonLampID
,
lpdwLampMode
);
return
1
;
}
DWORD
WINAPI
phoneSetRing
(
HPHONE
hPhone
,
DWORD
dwRingMode
,
DWORD
dwVolume
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %08ld): stub.
\n
"
,
hPhone
,
dwRingMode
,
dwVolume
);
FIXME
(
"(%04x, %08lx, %08ld): stub.
\n
"
,
hPhone
,
dwRingMode
,
dwVolume
);
return
1
;
}
DWORD
WINAPI
phoneSetStatusMessages
(
HPHONE
hPhone
,
DWORD
dwPhoneStates
,
DWORD
dwButtonModes
,
DWORD
dwButtonStates
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %08lx, %08lx): stub.
\n
"
,
hPhone
,
dwPhoneStates
,
dwButtonModes
,
dwButtonStates
);
FIXME
(
"(%04x, %08lx, %08lx, %08lx): stub.
\n
"
,
hPhone
,
dwPhoneStates
,
dwButtonModes
,
dwButtonStates
);
return
0
;
/* FIXME ? */
}
DWORD
WINAPI
phoneSetVolume
(
HPHONE
hPhone
,
DWORD
dwHookSwitchDev
,
DWORD
dwVolume
)
{
FIXME
(
tapi
,
"(%04x, %08lx, %08ld): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
dwVolume
);
FIXME
(
"(%04x, %08lx, %08ld): stub.
\n
"
,
hPhone
,
dwHookSwitchDev
,
dwVolume
);
return
1
;
}
DWORD
WINAPI
phoneShutdown
(
HPHONEAPP
hPhoneApp
)
{
FIXME
(
tapi
,
"(%04x): stub.
\n
"
,
hPhoneApp
);
FIXME
(
"(%04x): stub.
\n
"
,
hPhoneApp
);
return
0
;
}
dlls/ver/ver16.c
View file @
9fe7a254
...
...
@@ -8,7 +8,7 @@
#include "winver.h"
#include "ldt.h"
#include "ver.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
ver
)
...
...
@@ -51,7 +51,7 @@ DWORD WINAPI GetFileResource16( LPCSTR lpszFileName,
*/
DWORD
WINAPI
GetFileVersionInfoSize16
(
LPCSTR
lpszFileName
,
LPDWORD
lpdwHandle
)
{
TRACE
(
ver
,
"(%s, %p)
\n
"
,
debugstr_a
(
lpszFileName
),
lpdwHandle
);
TRACE
(
"(%s, %p)
\n
"
,
debugstr_a
(
lpszFileName
),
lpdwHandle
);
return
GetFileVersionInfoSizeA
(
lpszFileName
,
lpdwHandle
);
}
...
...
@@ -61,7 +61,7 @@ DWORD WINAPI GetFileVersionInfoSize16( LPCSTR lpszFileName, LPDWORD lpdwHandle )
DWORD
WINAPI
GetFileVersionInfo16
(
LPCSTR
lpszFileName
,
DWORD
handle
,
DWORD
cbBuf
,
LPVOID
lpvData
)
{
TRACE
(
ver
,
"(%s, %08lx, %ld, %p)
\n
"
,
TRACE
(
"(%s, %08lx, %ld, %p)
\n
"
,
debugstr_a
(
lpszFileName
),
handle
,
cbBuf
,
lpvData
);
return
GetFileVersionInfoA
(
lpszFileName
,
handle
,
cbBuf
,
lpvData
);
...
...
@@ -120,7 +120,7 @@ DWORD WINAPI VerQueryValue16( SEGPTR spvBlock, LPCSTR lpszSubBlock,
UINT
buflen
;
DWORD
retv
;
TRACE
(
ver
,
"(%p, %s, %p, %p)
\n
"
,
TRACE
(
"(%p, %s, %p, %p)
\n
"
,
lpvBlock
,
debugstr_a
(
lpszSubBlock
),
lpspBuffer
,
lpcb
);
retv
=
VerQueryValueA
(
lpvBlock
,
lpszSubBlock
,
&
buffer
,
&
buflen
);
...
...
@@ -128,7 +128,7 @@ DWORD WINAPI VerQueryValue16( SEGPTR spvBlock, LPCSTR lpszSubBlock,
if
(
OFFSETOF
(
spvBlock
)
+
((
char
*
)
buffer
-
(
char
*
)
lpvBlock
)
>=
0x10000
)
{
FIXME
(
ver
,
"offset %08X too large relative to %04X:%04X
\n
"
,
FIXME
(
"offset %08X too large relative to %04X:%04X
\n
"
,
(
char
*
)
buffer
-
(
char
*
)
lpvBlock
,
SELECTOROF
(
spvBlock
),
OFFSETOF
(
spvBlock
)
);
return
FALSE
;
}
...
...
dlls/version/info.c
View file @
9fe7a254
...
...
@@ -15,7 +15,7 @@
#include "winerror.h"
#include "heap.h"
#include "ver.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
ver
)
...
...
@@ -32,7 +32,7 @@ static void print_vffi_debug(VS_FIXEDFILEINFO *vffi)
{
dbg_decl_str
(
ver
,
1024
);
TRACE
(
ver
,
" structversion=%u.%u, fileversion=%u.%u.%u.%u, productversion=%u.%u.%u.%u, flagmask=0x%lx, flags=%s%s%s%s%s%s
\n
"
,
TRACE
(
" structversion=%u.%u, fileversion=%u.%u.%u.%u, productversion=%u.%u.%u.%u, flagmask=0x%lx, flags=%s%s%s%s%s%s
\n
"
,
HIWORD
(
vffi
->
dwStrucVersion
),
LOWORD
(
vffi
->
dwStrucVersion
),
HIWORD
(
vffi
->
dwFileVersionMS
),
LOWORD
(
vffi
->
dwFileVersionMS
),
HIWORD
(
vffi
->
dwFileVersionLS
),
LOWORD
(
vffi
->
dwFileVersionLS
),
...
...
@@ -68,7 +68,7 @@ static void print_vffi_debug(VS_FIXEDFILEINFO *vffi)
case
VOS__PM32
:
dsprintf
(
ver
,
"PM32"
);
break
;
default
:
dsprintf
(
ver
,
"UNKNOWN(0x%x)"
,
LOWORD
(
vffi
->
dwFileOS
));
break
;
}
TRACE
(
ver
,
"(%s)
\n
"
,
dbg_str
(
ver
));
TRACE
(
"(%s)
\n
"
,
dbg_str
(
ver
));
dbg_reset_str
(
ver
);
switch
(
vffi
->
dwFileType
)
{
...
...
@@ -134,9 +134,9 @@ static void print_vffi_debug(VS_FIXEDFILEINFO *vffi)
case
VFT_VXD
:
dsprintf
(
ver
,
"filetype=VXD"
);
break
;
case
VFT_STATIC_LIB
:
dsprintf
(
ver
,
"filetype=STATIC_LIB"
);
break
;
}
TRACE
(
ver
,
"%s
\n
"
,
dbg_str
(
ver
));
TRACE
(
"%s
\n
"
,
dbg_str
(
ver
));
TRACE
(
ver
,
" filedata=0x%lx.0x%lx
\n
"
,
TRACE
(
" filedata=0x%lx.0x%lx
\n
"
,
vffi
->
dwFileDateMS
,
vffi
->
dwFileDateLS
);
}
...
...
@@ -207,28 +207,28 @@ void ConvertVersionInfo32To16( VS_VERSION_INFO_STRUCT32 *info32,
VS_VERSION_INFO_STRUCT32
*
child32
=
VersionInfo32_Children
(
info32
);
VS_VERSION_INFO_STRUCT16
*
child16
;
TRACE
(
ver
,
"Converting %p to %p
\n
"
,
info32
,
info16
);
TRACE
(
ver
,
"wLength %d, wValueLength %d, bText %d, value %p, child %p
\n
"
,
TRACE
(
"Converting %p to %p
\n
"
,
info32
,
info16
);
TRACE
(
"wLength %d, wValueLength %d, bText %d, value %p, child %p
\n
"
,
wLength
,
wValueLength
,
bText
,
lpValue
,
child32
);
/* Convert key */
lstrcpyWtoA
(
info16
->
szKey
,
info32
->
szKey
);
TRACE
(
ver
,
"Copied key from %p to %p: %s
\n
"
,
info32
->
szKey
,
info16
->
szKey
,
TRACE
(
"Copied key from %p to %p: %s
\n
"
,
info32
->
szKey
,
info16
->
szKey
,
debugstr_a
(
info16
->
szKey
)
);
/* Convert value */
if
(
wValueLength
==
0
)
{
info16
->
wValueLength
=
0
;
TRACE
(
ver
,
"No value present
\n
"
);
TRACE
(
"No value present
\n
"
);
}
else
if
(
bText
)
{
info16
->
wValueLength
=
lstrlenW
(
(
LPCWSTR
)
lpValue
)
+
1
;
lstrcpyWtoA
(
VersionInfo16_Value
(
info16
),
(
LPCWSTR
)
lpValue
);
TRACE
(
ver
,
"Copied value from %p to %p: %s
\n
"
,
lpValue
,
TRACE
(
"Copied value from %p to %p: %s
\n
"
,
lpValue
,
VersionInfo16_Value
(
info16
),
debugstr_a
(
VersionInfo16_Value
(
info16
))
);
}
...
...
@@ -237,7 +237,7 @@ void ConvertVersionInfo32To16( VS_VERSION_INFO_STRUCT32 *info32,
info16
->
wValueLength
=
wValueLength
;
memmove
(
VersionInfo16_Value
(
info16
),
lpValue
,
wValueLength
);
TRACE
(
ver
,
"Copied value from %p to %p: %d bytes
\n
"
,
lpValue
,
TRACE
(
"Copied value from %p to %p: %d bytes
\n
"
,
lpValue
,
VersionInfo16_Value
(
info16
),
wValueLength
);
}
...
...
@@ -256,7 +256,7 @@ void ConvertVersionInfo32To16( VS_VERSION_INFO_STRUCT32 *info32,
/* Fixup length */
info16
->
wLength
=
(
DWORD
)
child16
-
(
DWORD
)
info16
;
TRACE
(
ver
,
"Finished, length is %d (%p - %p)
\n
"
,
TRACE
(
"Finished, length is %d (%p - %p)
\n
"
,
info16
->
wLength
,
info16
,
child16
);
}
...
...
@@ -270,7 +270,7 @@ DWORD WINAPI GetFileVersionInfoSizeA( LPCSTR filename, LPDWORD handle )
DWORD
len
,
ret
,
offset
;
BYTE
buf
[
144
];
TRACE
(
ver
,
"(%s,%p)
\n
"
,
debugstr_a
(
filename
),
handle
);
TRACE
(
"(%s,%p)
\n
"
,
debugstr_a
(
filename
),
handle
);
len
=
GetFileResourceSize
(
filename
,
MAKEINTRESOURCEA
(
VS_FILE_INFO
),
...
...
@@ -293,7 +293,7 @@ DWORD WINAPI GetFileVersionInfoSizeA( LPCSTR filename, LPDWORD handle )
if
(
vffi
->
dwSignature
!=
VS_FFI_SIGNATURE
)
{
WARN
(
ver
,
"vffi->dwSignature is 0x%08lx, but not 0x%08lx!
\n
"
,
WARN
(
"vffi->dwSignature is 0x%08lx, but not 0x%08lx!
\n
"
,
vffi
->
dwSignature
,
VS_FFI_SIGNATURE
);
return
0
;
}
...
...
@@ -301,7 +301,7 @@ DWORD WINAPI GetFileVersionInfoSizeA( LPCSTR filename, LPDWORD handle )
if
(
((
VS_VERSION_INFO_STRUCT16
*
)
buf
)
->
wLength
<
len
)
len
=
((
VS_VERSION_INFO_STRUCT16
*
)
buf
)
->
wLength
;
if
(
TRACE_ON
(
ver
)
)
if
(
TRACE_ON
(
ver
)
)
print_vffi_debug
(
vffi
);
return
len
;
...
...
@@ -324,7 +324,7 @@ DWORD WINAPI GetFileVersionInfoSizeW( LPCWSTR filename, LPDWORD handle )
DWORD
WINAPI
GetFileVersionInfoA
(
LPCSTR
filename
,
DWORD
handle
,
DWORD
datasize
,
LPVOID
data
)
{
TRACE
(
ver
,
"(%s,%ld,size=%ld,data=%p)
\n
"
,
TRACE
(
"(%s,%ld,size=%ld,data=%p)
\n
"
,
debugstr_a
(
filename
),
handle
,
datasize
,
data
);
if
(
!
GetFileResource
(
filename
,
MAKEINTRESOURCEA
(
VS_FILE_INFO
),
...
...
@@ -353,7 +353,7 @@ DWORD WINAPI GetFileVersionInfoW( LPCWSTR filename, DWORD handle,
LPSTR
fn
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
filename
);
DWORD
retv
=
TRUE
;
TRACE
(
ver
,
"(%s,%ld,size=%ld,data=%p)
\n
"
,
TRACE
(
"(%s,%ld,size=%ld,data=%p)
\n
"
,
debugstr_a
(
fn
),
handle
,
datasize
,
data
);
if
(
!
GetFileResource
(
fn
,
MAKEINTRESOURCEA
(
VS_FILE_INFO
),
...
...
@@ -365,7 +365,7 @@ DWORD WINAPI GetFileVersionInfoW( LPCWSTR filename, DWORD handle,
&&
datasize
>=
((
VS_VERSION_INFO_STRUCT16
*
)
data
)
->
wLength
&&
VersionInfoIs16
(
data
)
)
{
ERR
(
ver
,
"Cannot access NE resource in %s
\n
"
,
debugstr_a
(
fn
)
);
ERR
(
"Cannot access NE resource in %s
\n
"
,
debugstr_a
(
fn
)
);
retv
=
FALSE
;
}
...
...
@@ -422,11 +422,11 @@ DWORD WINAPI VerQueryValueA( LPVOID pBlock, LPCSTR lpSubBlock,
VS_VERSION_INFO_STRUCT16
*
info
=
(
VS_VERSION_INFO_STRUCT16
*
)
pBlock
;
if
(
!
VersionInfoIs16
(
info
)
)
{
ERR
(
ver
,
"called on PE resource!
\n
"
);
ERR
(
"called on PE resource!
\n
"
);
return
FALSE
;
}
TRACE
(
ver
,
"(%p,%s,%p,%p)
\n
"
,
TRACE
(
"(%p,%s,%p,%p)
\n
"
,
pBlock
,
debugstr_a
(
lpSubBlock
),
lplpBuffer
,
puLen
);
while
(
*
lpSubBlock
)
...
...
@@ -468,11 +468,11 @@ DWORD WINAPI VerQueryValueW( LPVOID pBlock, LPCWSTR lpSubBlock,
VS_VERSION_INFO_STRUCT32
*
info
=
(
VS_VERSION_INFO_STRUCT32
*
)
pBlock
;
if
(
VersionInfoIs16
(
info
)
)
{
ERR
(
ver
,
"called on NE resource!
\n
"
);
ERR
(
"called on NE resource!
\n
"
);
return
FALSE
;
}
TRACE
(
ver
,
"(%p,%s,%p,%p)
\n
"
,
TRACE
(
"(%p,%s,%p,%p)
\n
"
,
pBlock
,
debugstr_w
(
lpSubBlock
),
lplpBuffer
,
puLen
);
while
(
*
lpSubBlock
)
...
...
@@ -516,7 +516,7 @@ DWORD WINAPI VerLanguageNameA( UINT wLang, LPSTR szLang, UINT nSize )
LPCSTR
name
;
DWORD
result
;
TRACE
(
ver
,
"(%d,%p,%d)
\n
"
,
wLang
,
szLang
,
nSize
);
TRACE
(
"(%d,%p,%d)
\n
"
,
wLang
,
szLang
,
nSize
);
/*
* First, check \System\CurrentControlSet\control\Nls\Locale\<langid>
...
...
@@ -551,7 +551,7 @@ DWORD WINAPI VerLanguageNameW( UINT wLang, LPWSTR szLang, UINT nSize )
LPCSTR
name
;
DWORD
result
;
TRACE
(
ver
,
"(%d,%p,%d)
\n
"
,
wLang
,
szLang
,
nSize
);
TRACE
(
"(%d,%p,%d)
\n
"
,
wLang
,
szLang
,
nSize
);
/*
* First, check \System\CurrentControlSet\control\Nls\Locale\<langid>
...
...
dlls/version/install.c
View file @
9fe7a254
...
...
@@ -16,7 +16,7 @@
#include "ver.h"
#include "lzexpand.h"
#include "xmalloc.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
ver
)
...
...
@@ -50,7 +50,7 @@ static void ver_dstring(
char
const
*
teststring
,
char
const
*
epilogue
)
{
TRACE
(
ver
,
"%s %p (
\"
%s
\"
) %s
\n
"
,
prologue
,
TRACE
(
"%s %p (
\"
%s
\"
) %s
\n
"
,
prologue
,
(
void
const
*
)
teststring
,
teststring
?
teststring
:
"(null)"
,
epilogue
);
...
...
@@ -189,27 +189,27 @@ DWORD WINAPI VerFindFileA(
retval
=
0
;
/* Print out debugging information */
TRACE
(
ver
,
"called with parameters:
\n
"
TRACE
(
"called with parameters:
\n
"
"
\t
flags = %x"
,
flags
);
if
(
flags
&
VFFF_ISSHAREDFILE
)
TRACE
(
ver
,
" (VFFF_ISSHAREDFILE)
\n
"
);
TRACE
(
" (VFFF_ISSHAREDFILE)
\n
"
);
else
TRACE
(
ver
,
"
\n
"
);
TRACE
(
"
\n
"
);
ver_dstring
(
"
\t
lpszFilename = "
,
lpszFilename
,
""
);
ver_dstring
(
"
\t
lpszWinDir = "
,
lpszWinDir
,
""
);
ver_dstring
(
"
\t
lpszAppDir = "
,
lpszAppDir
,
""
);
TRACE
(
ver
,
"
\t
lpszCurDir = %p
\n
"
,
lpszCurDir
);
TRACE
(
"
\t
lpszCurDir = %p
\n
"
,
lpszCurDir
);
if
(
lpuCurDirLen
)
TRACE
(
ver
,
"
\t
lpuCurDirLen = %p (%u)
\n
"
,
TRACE
(
"
\t
lpuCurDirLen = %p (%u)
\n
"
,
lpuCurDirLen
,
*
lpuCurDirLen
);
else
TRACE
(
ver
,
"
\t
lpuCurDirLen = (null)
\n
"
);
TRACE
(
"
\t
lpuCurDirLen = (null)
\n
"
);
TRACE
(
ver
,
"
\t
lpszDestDir = %p
\n
"
,
lpszDestDir
);
TRACE
(
"
\t
lpszDestDir = %p
\n
"
,
lpszDestDir
);
if
(
lpuDestDirLen
)
TRACE
(
ver
,
"
\t
lpuDestDirLen = %p (%u)
\n
"
,
TRACE
(
"
\t
lpuDestDirLen = %p (%u)
\n
"
,
lpuDestDirLen
,
*
lpuDestDirLen
);
/* Figure out where the file should go; shared files default to the
...
...
@@ -301,21 +301,21 @@ DWORD WINAPI VerFindFileA(
*
lpuCurDirLen
=
curDirSizeReq
;
}
TRACE
(
ver
,
"ret = %lu (%s%s%s)
\n
"
,
retval
,
TRACE
(
"ret = %lu (%s%s%s)
\n
"
,
retval
,
(
retval
&
VFF_CURNEDEST
)
?
"VFF_CURNEDEST "
:
""
,
(
retval
&
VFF_FILEINUSE
)
?
"VFF_FILEINUSE "
:
""
,
(
retval
&
VFF_BUFFTOOSMALL
)
?
"VFF_BUFFTOOSMALL "
:
""
);
ver_dstring
(
"
\t
(Exit) lpszCurDir = "
,
lpszCurDir
,
""
);
if
(
lpuCurDirLen
)
TRACE
(
ver
,
"
\t
(Exit) lpuCurDirLen = %p (%u)
\n
"
,
TRACE
(
"
\t
(Exit) lpuCurDirLen = %p (%u)
\n
"
,
lpuCurDirLen
,
*
lpuCurDirLen
);
else
TRACE
(
ver
,
"
\t
(Exit) lpuCurDirLen = (null)
\n
"
);
TRACE
(
"
\t
(Exit) lpuCurDirLen = (null)
\n
"
);
ver_dstring
(
"
\t
(Exit) lpszDestDir = "
,
lpszDestDir
,
""
);
if
(
lpuDestDirLen
)
TRACE
(
ver
,
"
\t
(Exit) lpuDestDirLen = %p (%u)
\n
"
,
TRACE
(
"
\t
(Exit) lpuDestDirLen = %p (%u)
\n
"
,
lpuDestDirLen
,
*
lpuDestDirLen
);
return
retval
;
...
...
@@ -371,7 +371,7 @@ _fetch_versioninfo(LPSTR fn,VS_FIXEDFILEINFO **vffi) {
if
((
*
vffi
)
->
dwSignature
==
0x004f0049
)
/* hack to detect unicode */
*
vffi
=
(
VS_FIXEDFILEINFO
*
)(
buf
+
0x28
);
if
((
*
vffi
)
->
dwSignature
!=
VS_FFI_SIGNATURE
)
WARN
(
ver
,
"Bad VS_FIXEDFILEINFO signature 0x%08lx
\n
"
,(
*
vffi
)
->
dwSignature
);
WARN
(
"Bad VS_FIXEDFILEINFO signature 0x%08lx
\n
"
,(
*
vffi
)
->
dwSignature
);
return
buf
;
}
}
...
...
@@ -404,7 +404,7 @@ DWORD WINAPI VerInstallFileA(
LPBYTE
buf1
,
buf2
;
OFSTRUCT
ofs
;
TRACE
(
ver
,
"(%x,%s,%s,%s,%s,%s,%p,%d)
\n
"
,
TRACE
(
"(%x,%s,%s,%s,%s,%s,%p,%d)
\n
"
,
flags
,
srcfilename
,
destfilename
,
srcdir
,
destdir
,
curdir
,
tmpfile
,
*
tmpfilelen
);
xret
=
0
;
...
...
dlls/version/resource.c
View file @
9fe7a254
...
...
@@ -17,7 +17,7 @@
#include "heap.h"
#include "lzexpand.h"
#include "peexe.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
ver
)
...
...
@@ -48,7 +48,7 @@ static int read_xx_header( HFILE lzfd )
return
IMAGE_NT_SIGNATURE
;
magic
[
2
]
=
'\0'
;
WARN
(
ver
,
"Can't handle %s files.
\n
"
,
magic
);
WARN
(
"Can't handle %s files.
\n
"
,
magic
);
return
0
;
}
...
...
@@ -72,7 +72,7 @@ static BOOL find_ne_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
resTabSize
=
nehd
.
rname_tab_offset
-
nehd
.
resource_tab_offset
;
if
(
!
resTabSize
)
{
TRACE
(
ver
,
"No resources in NE dll
\n
"
);
TRACE
(
"No resources in NE dll
\n
"
);
return
FALSE
;
}
...
...
@@ -92,14 +92,14 @@ static BOOL find_ne_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
typeInfo
=
NE_FindTypeSection
(
resTab
,
typeInfo
,
typeid
);
if
(
!
typeInfo
)
{
TRACE
(
ver
,
"No typeid entry found for %p
\n
"
,
typeid
);
TRACE
(
"No typeid entry found for %p
\n
"
,
typeid
);
HeapFree
(
GetProcessHeap
(),
0
,
resTab
);
return
FALSE
;
}
nameInfo
=
NE_FindResourceFromType
(
resTab
,
typeInfo
,
resid
);
if
(
!
nameInfo
)
{
TRACE
(
ver
,
"No resid entry found for %p
\n
"
,
typeid
);
TRACE
(
"No resid entry found for %p
\n
"
,
typeid
);
HeapFree
(
GetProcessHeap
(),
0
,
resTab
);
return
FALSE
;
}
...
...
@@ -137,7 +137,7 @@ static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
resDataDir
=
pehd
.
OptionalHeader
.
DataDirectory
+
IMAGE_FILE_RESOURCE_DIRECTORY
;
if
(
!
resDataDir
->
Size
)
{
TRACE
(
ver
,
"No resources in PE dll
\n
"
);
TRACE
(
"No resources in PE dll
\n
"
);
return
FALSE
;
}
...
...
@@ -169,7 +169,7 @@ static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
if
(
i
==
nSections
)
{
HeapFree
(
GetProcessHeap
(),
0
,
sections
);
TRACE
(
ver
,
"Couldn't find resource section
\n
"
);
TRACE
(
"Couldn't find resource section
\n
"
);
return
FALSE
;
}
...
...
@@ -198,7 +198,7 @@ static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
resPtr
=
GetResDirEntryA
(
resPtr
,
typeid
,
resDir
,
FALSE
);
if
(
!
resPtr
)
{
TRACE
(
ver
,
"No typeid entry found for %p
\n
"
,
typeid
);
TRACE
(
"No typeid entry found for %p
\n
"
,
typeid
);
HeapFree
(
GetProcessHeap
(),
0
,
resSection
);
HeapFree
(
GetProcessHeap
(),
0
,
sections
);
return
FALSE
;
...
...
@@ -206,7 +206,7 @@ static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
resPtr
=
GetResDirEntryA
(
resPtr
,
resid
,
resDir
,
FALSE
);
if
(
!
resPtr
)
{
TRACE
(
ver
,
"No resid entry found for %p
\n
"
,
resid
);
TRACE
(
"No resid entry found for %p
\n
"
,
resid
);
HeapFree
(
GetProcessHeap
(),
0
,
resSection
);
HeapFree
(
GetProcessHeap
(),
0
,
sections
);
return
FALSE
;
...
...
@@ -214,7 +214,7 @@ static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
resPtr
=
GetResDirEntryA
(
resPtr
,
0
,
resDir
,
TRUE
);
if
(
!
resPtr
)
{
TRACE
(
ver
,
"No default language entry found for %p
\n
"
,
resid
);
TRACE
(
"No default language entry found for %p
\n
"
,
resid
);
HeapFree
(
GetProcessHeap
(),
0
,
resSection
);
HeapFree
(
GetProcessHeap
(),
0
,
sections
);
return
FALSE
;
...
...
@@ -230,7 +230,7 @@ static BOOL find_pe_resource( HFILE lzfd, LPCSTR typeid, LPCSTR resid,
if
(
i
==
nSections
)
{
TRACE
(
ver
,
"Couldn't find resource data section
\n
"
);
TRACE
(
"Couldn't find resource data section
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
resSection
);
HeapFree
(
GetProcessHeap
(),
0
,
sections
);
return
FALSE
;
...
...
@@ -258,7 +258,7 @@ DWORD WINAPI GetFileResourceSize( LPCSTR lpszFileName,
OFSTRUCT
ofs
;
DWORD
reslen
;
TRACE
(
ver
,
"(%s,type=0x%lx,id=0x%lx,off=%p)
\n
"
,
TRACE
(
"(%s,type=0x%lx,id=0x%lx,off=%p)
\n
"
,
debugstr_a
(
lpszFileName
),
(
LONG
)
lpszResType
,
(
LONG
)
lpszResId
,
lpszResId
);
...
...
@@ -295,7 +295,7 @@ DWORD WINAPI GetFileResource( LPCSTR lpszFileName,
OFSTRUCT
ofs
;
DWORD
reslen
=
dwResLen
;
TRACE
(
ver
,
"(%s,type=0x%lx,id=0x%lx,off=%ld,len=%ld,data=%p)
\n
"
,
TRACE
(
"(%s,type=0x%lx,id=0x%lx,off=%ld,len=%ld,data=%p)
\n
"
,
debugstr_a
(
lpszFileName
),
(
LONG
)
lpszResType
,
(
LONG
)
lpszResId
,
dwFileOffset
,
dwResLen
,
lpvData
);
...
...
ipc/dde_atom.c
View file @
9fe7a254
...
...
@@ -15,7 +15,7 @@
#include "shm_main_blk.h"
#include "shm_fragment.h"
#include "ldt.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
atom
)
...
...
@@ -130,7 +130,7 @@ ATOM DDE_GlobalAddAtom( SEGPTR name )
return
(
atom
<
MIN_STR_ATOM
)
?
atom
:
0
;
}
TRACE
(
atom
,
"(
\"
%s
\"
)
\n
"
,
str
);
TRACE
(
"(
\"
%s
\"
)
\n
"
,
str
);
DDE_IPC_init
();
/* will initialize only if needed */
...
...
@@ -175,7 +175,7 @@ ATOM DDE_GlobalDeleteAtom( ATOM atom )
AtomData_ptr
atom_ptr
;
ATOM
retval
=
(
ATOM
)
0
;
TRACE
(
atom
,
"(
\"
%d
\"
)
\n
"
,(
int
)
atom
);
TRACE
(
"(
\"
%d
\"
)
\n
"
,(
int
)
atom
);
atom_idx
=
(
int
)
atom
-
MIN_STR_ATOM
;
if
(
atom_idx
<
0
)
...
...
@@ -188,7 +188,7 @@ ATOM DDE_GlobalDeleteAtom( ATOM atom )
switch
(
atom_ofs
=
ATOM_OFS
(
atom_idx
))
{
case
DELETED
:
case
EMPTY
:
WARN
(
atom
,
"Trying to free unallocated atom %d
\n
"
,
atom
);
WARN
(
"Trying to free unallocated atom %d
\n
"
,
atom
);
retval
=
atom
;
break
;
default
:
...
...
@@ -212,7 +212,7 @@ ATOM DDE_GlobalFindAtom( SEGPTR name )
int
atom_ofs
;
char
*
str
;
TRACE
(
atom
,
"(%08lx)
\n
"
,
name
);
TRACE
(
"(%08lx)
\n
"
,
name
);
/* First check for integer atom */
...
...
@@ -224,7 +224,7 @@ ATOM DDE_GlobalFindAtom( SEGPTR name )
ATOM
atom
=
(
ATOM
)
atoi
(
&
str
[
1
]);
return
(
atom
<
MIN_STR_ATOM
)
?
atom
:
0
;
}
TRACE
(
atom
,
"(
\"
%s
\"
)
\n
"
,
str
);
TRACE
(
"(
\"
%s
\"
)
\n
"
,
str
);
DDE_IPC_init
();
/* will initialize only if needed */
...
...
@@ -274,7 +274,7 @@ WORD DDE_GlobalGetAtomName( ATOM atom, LPSTR buffer, short count )
shm_read_wait
(
main_block
->
sem
);
atom_ofs
=
ATOM_OFS
(
atom_idx
);
if
(
atom_ofs
==
EMPTY
||
atom_ofs
==
DELETED
)
{
WARN
(
atom
,
"Illegal atom=%d
\n
"
,(
int
)
atom
);
WARN
(
"Illegal atom=%d
\n
"
,(
int
)
atom
);
size
=
0
;
}
else
{
/* non empty entry */
/* string length will be at most count-1, find actual size */
...
...
ipc/dde_atom_test.c
View file @
9fe7a254
...
...
@@ -12,7 +12,7 @@
#include <win.h>
#include "dde_atom.h"
#include "shm_main_blk.h"
#include
<debug.h>
#include
"debugtools.h"
DECLARE_DEBUG_CHANNEL
(
atom
)
DECLARE_DEBUG_CHANNEL
(
sem
)
...
...
ipc/shm_block.c
View file @
9fe7a254
...
...
@@ -9,13 +9,12 @@
*/
#ifdef CONFIG_IPC
#define inline inline
#include <sys/types.h>
#include <sys/sem.h>
#include <assert.h>
#include <unistd.h>
#include <stdlib.h>
#include "debug.h"
#include "debug
tools
.h"
#include "global.h"
#include "selectors.h"
#include "shm_fragment.h"
...
...
@@ -38,7 +37,7 @@ struct local_shm_map *shm_map=NULL;
*/
void
shm_setup_block
(
struct
shm_block
*
block
,
int
first
,
int
size
)
{
TRACE
(
shm
,
"Setting up shm block at 0x%08x
\n
"
,(
int
)
block
);
TRACE
(
"Setting up shm block at 0x%08x
\n
"
,(
int
)
block
);
/* setup block internal data structure */
if
(
first
<=
0
)
{
first
=
sizeof
(
*
block
);
...
...
@@ -54,7 +53,7 @@ void shm_setup_block(struct shm_block *block, int first, int size)
/* block->size is initialized in shm_FragmentInit */
shm_FragmentInit
(
block
,
first
,
size
);
/* first item in the free list */
TRACE
(
shm
,
"block was set up at 0x%08x, size=0x%04xKB, 1st usable=%02x
\n
"
,
TRACE
(
"block was set up at 0x%08x, size=0x%04xKB, 1st usable=%02x
\n
"
,
(
int
)
block
,
size
/
1024
,
first
);
}
...
...
ipc/shm_fragment.c
View file @
9fe7a254
...
...
@@ -10,7 +10,7 @@
#ifdef CONFIG_IPC
#include <stdio.h>
/* for debugging only */
#include
<debug.h>
/* for "stddeb" */
#include
"debugtools.h"
/* for "stddeb" */
#include "shm_fragment.h"
#include "shm_block.h"
...
...
ipc/shm_fragment_test.c
View file @
9fe7a254
...
...
@@ -10,7 +10,7 @@
#include <assert.h>
#include <stdio.h>
#define DEBUG_DEFINE_VARIABLES
/* just avoid dumb errors */
#include
<debug.h>
/* for "stddeb" */
#include
"debugtools.h"
/* for "stddeb" */
#include <stdlib.h>
#include <string.h>
#include "shm_block.h"
...
...
ipc/shm_main_blk.c
View file @
9fe7a254
...
...
@@ -9,7 +9,6 @@
*/
#ifdef CONFIG_IPC
#define inline inline
#include <sys/types.h>
#include <sys/sem.h>
#include <time.h>
...
...
@@ -17,7 +16,7 @@
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include "debug.h"
#include "debug
tools
.h"
#include "shm_fragment.h"
#include "shm_block.h"
#include "shm_main_blk.h"
...
...
@@ -80,7 +79,7 @@ int proc_exist(pid_t pid)
/* setup a new main shm block (only construct a shm block object). */
static
void
shm_setup_main_block
()
{
TRACE
(
shm
,
"creating data structure
\n
"
);
TRACE
(
"creating data structure
\n
"
);
main_block
->
build_lock
=
1
;
strcpy
(
main_block
->
magic
,
shm_header
);
...
...
@@ -134,19 +133,19 @@ static int attach_MainBlock(int shm_id)
/* Make sure we don't work on somebody else's block */
if
(
shm_info
.
shm_perm
.
cuid
!=
getuid
())
{
/* creator is not me */
WARN
(
shm
,
"Creator is not me!
\n
"
);
WARN
(
"Creator is not me!
\n
"
);
return
0
;
}
TRACE
(
shm
,
"shared memory exist, attaching anywhere
\n
"
);
TRACE
(
"shared memory exist, attaching anywhere
\n
"
);
main_block
=
(
struct
shm_main_block
*
)
shmat
(
shm_id
,
0
,
0
);
if
(
(
int
)
main_block
==-
1
)
{
WARN
(
shm
,
"Attach failed
\n
"
);
WARN
(
"Attach failed
\n
"
);
return
0
;
}
if
(
strcmp
(
main_block
->
magic
,
shm_header
)
!=
0
)
{
TRACE
(
shm
,
"Detaching, wrong magic
\n
"
);
TRACE
(
"Detaching, wrong magic
\n
"
);
shmdt
((
void
*
)
main_block
);
return
0
;
}
...
...
@@ -156,7 +155,7 @@ static int attach_MainBlock(int shm_id)
/* Is it an old unused block ? */
if
(
shm_info
.
shm_nattch
==
0
)
{
TRACE
(
shm
,
"No attaches, deleting old data
\n
"
);
TRACE
(
"No attaches, deleting old data
\n
"
);
shm_delete_all
(
shm_id
);
return
0
;
}
...
...
@@ -181,10 +180,10 @@ static int shm_locate_MainBlock(key_t shm_key)
int
shm_id
;
/* Descriptor to this shared memory */
int
i
;
TRACE
(
shm
,
"trying to attach, key=0x%x
\n
"
,
TRACE
(
"trying to attach, key=0x%x
\n
"
,
shm_key
);
for
(
i
=
0
;
i
<
SHM_KEY_RANGE
;
i
++
)
{
TRACE
(
shm
,
"iteration=%d
\n
"
,
i
);
TRACE
(
"iteration=%d
\n
"
,
i
);
shm_id
=
shmget
(
shm_key
+
i
,
SHM_MINBLOCK
,
0700
);
...
...
@@ -203,7 +202,7 @@ static int shm_locate_MainBlock(key_t shm_key)
case
ENOMEM
:
/* no free memory */
case
ENOENT
:
/* this key does not exist */
default
:
WARN
(
shm
,
"shmget failed, errno=%d, %s
\n
"
,
WARN
(
"shmget failed, errno=%d, %s
\n
"
,
errno
,
strerror
(
errno
)
);
return
0
;
/* Failed */
}
...
...
@@ -223,7 +222,7 @@ static int shm_create_MainBlock(key_t MainShmKey)
int
flags
=
0700
|
IPC_CREAT
|
IPC_EXCL
;
int
i
;
TRACE
(
shm
,
"creating shared memory
\n
"
);
TRACE
(
"creating shared memory
\n
"
);
/* try to allocate shared memory with key="Wine", size=SHM_MINBLOCK, */
/* complete user permission */
...
...
@@ -233,10 +232,10 @@ static int shm_create_MainBlock(key_t MainShmKey)
break
;
}
if
(
shm_id
==
-
1
)
{
WARN
(
shm
,
"failed to create shared memory
\n
"
);
WARN
(
"failed to create shared memory
\n
"
);
return
0
;
}
TRACE
(
shm
,
"shared memory created, attaching
\n
"
);
TRACE
(
"shared memory created, attaching
\n
"
);
main_block
=
(
struct
shm_main_block
*
)
shmat
(
shm_id
,
0
,
0
);
if
(
TRACE_ON
(
shm
))
print_shm_info
(
shm_id
);
...
...
@@ -253,7 +252,7 @@ int shm_init(void)
{
if
(
!
shm_locate_MainBlock
(
WineKey
)
&&
!
shm_create_MainBlock
(
WineKey
))
{
ERR
(
shm
,
"Failed to init main shm block
\n
"
);
ERR
(
"Failed to init main shm block
\n
"
);
exit
(
1
);
}
...
...
ipc/shm_semaph.c
View file @
9fe7a254
...
...
@@ -9,12 +9,11 @@
*/
#ifdef CONFIG_IPC
#define inline inline
#include <assert.h>
#include <unistd.h>
#include <sys/sem.h>
#include <errno.h>
#include "debug.h"
#include "debug
tools
.h"
#include "shm_semaph.h"
DEFAULT_DEBUG_CHANNEL
(
sem
)
...
...
@@ -29,7 +28,7 @@ void shm_read_wait(shm_sem semid)
struct
sembuf
sop
[
2
];
int
ret
;
TRACE
(
sem
,
"(%d)
\n
"
,
semid
);
TRACE
(
"(%d)
\n
"
,
semid
);
sop
[
0
].
sem_num
=
SEM_READ
;
sop
[
0
].
sem_op
=
1
;
/* add this read instance */
sop
[
0
].
sem_flg
=
SEM_UNDO
;
/* undo in case process dies */
...
...
@@ -43,7 +42,7 @@ void shm_read_wait(shm_sem semid)
}
while
(
ret
<
0
&&
errno
==
EINTR
);
/* interrupted system call? */
if
(
ret
<
0
)
WARN
(
sem
,
"(semid=%d,errno=%d): Failed semaphore lock for read
\n
"
,
WARN
(
"(semid=%d,errno=%d): Failed semaphore lock for read
\n
"
,
semid
,
errno
);
}
void
shm_write_wait
(
shm_sem
semid
)
...
...
@@ -51,7 +50,7 @@ void shm_write_wait(shm_sem semid)
struct
sembuf
sop
[
3
];
int
ret
;
TRACE
(
sem
,
"(%d)
\n
"
,
semid
);
TRACE
(
"(%d)
\n
"
,
semid
);
sop
[
0
].
sem_num
=
SEM_READ
;
sop
[
0
].
sem_op
=
0
;
/* wait until no reading instance exist */
sop
[
0
].
sem_flg
=
SEM_UNDO
;
...
...
@@ -69,7 +68,7 @@ void shm_write_wait(shm_sem semid)
}
while
(
ret
<
0
&&
errno
==
EINTR
);
/* interrupted system call? */
if
(
ret
<
0
)
/* test for the error */
WARN
(
sem
,
"(semid=%d,errno=%d): Failed semaphore lock for write
\n
"
,
WARN
(
"(semid=%d,errno=%d): Failed semaphore lock for write
\n
"
,
semid
,
errno
);
}
void
shm_write_signal
(
shm_sem
semid
)
...
...
@@ -77,7 +76,7 @@ void shm_write_signal(shm_sem semid)
struct
sembuf
sop
[
2
];
int
ret
;
TRACE
(
sem
,
"(%d)
\n
"
,
semid
);
TRACE
(
"(%d)
\n
"
,
semid
);
sop
[
0
].
sem_num
=
SEM_READ
;
sop
[
0
].
sem_op
=-
1
;
sop
[
0
].
sem_flg
=
IPC_NOWAIT
|
SEM_UNDO
;
/* no reason to wait */
...
...
@@ -91,7 +90,7 @@ void shm_write_signal(shm_sem semid)
}
while
(
ret
<
0
&&
errno
==
EINTR
);
/* interrupted system call? */
if
(
ret
<
0
)
/* test for the error */
WARN
(
sem
,
"(semid=%d,errno=%d): Failed semaphore unlock for write
\n
"
,
WARN
(
"(semid=%d,errno=%d): Failed semaphore unlock for write
\n
"
,
semid
,
errno
);
}
...
...
@@ -100,7 +99,7 @@ void shm_read_signal(shm_sem semid)
struct
sembuf
sop
[
2
];
int
ret
;
TRACE
(
sem
,
"(%d)
\n
"
,
semid
);
TRACE
(
"(%d)
\n
"
,
semid
);
sop
[
0
].
sem_num
=
SEM_READ
;
sop
[
0
].
sem_op
=-
1
;
sop
[
0
].
sem_flg
=
IPC_NOWAIT
|
SEM_UNDO
;
/* no reason to wait */
...
...
@@ -110,7 +109,7 @@ void shm_read_signal(shm_sem semid)
}
while
(
ret
<
0
&&
errno
==
EINTR
);
/* interrupted system call? */
if
(
ret
<
0
)
/* test for the error */
WARN
(
sem
,
"(semid=%d,errno=%d): Failed semaphore unlock for read
\n
"
,
WARN
(
"(semid=%d,errno=%d): Failed semaphore unlock for read
\n
"
,
semid
,
errno
);
}
...
...
ipc/shm_semaph_test.c
View file @
9fe7a254
...
...
@@ -16,7 +16,7 @@
#include "shm_semaph.h"
#include <sys/shm.h>
#define DEBUG_DEFINE_VARIABLES
#include
<debug.h>
#include
"debugtools.h"
static
volatile
int
*
volatile
data
;
static
int
isparent
=
0
;
...
...
ipc/wine_test_stub.c
View file @
9fe7a254
...
...
@@ -5,7 +5,7 @@
#include <win.h>
#define DEBUG_DEFINE_VARIABLES
#define DEBUG_ALL
#include
<debug.h>
#include
"debugtools.h"
#define DDE_PROC2WIN(proc_idx) ( (HWND) ~( (proc_idx)+1) )
#define DDE_WIN2PROC(win) ( (int) ~(short) ((win)+1) )
...
...
relay32/snoop.c
View file @
9fe7a254
...
...
@@ -17,7 +17,7 @@
#include "selectors.h"
#include "stackframe.h"
#include "debugstr.h"
#include "debug.h"
#include "debug
tools
.h"
DEFAULT_DEBUG_CHANNEL
(
snoop
)
...
...
@@ -141,7 +141,7 @@ SNOOP_RegisterDLL(HMODULE hmod,LPCSTR name,DWORD nrofordinals) {
memset
((
*
dll
)
->
funs
,
0
,
nrofordinals
*
sizeof
(
SNOOP_FUN
));
if
(
!
(
*
dll
)
->
funs
)
{
HeapFree
(
SystemHeap
,
0
,
*
dll
);
FIXME
(
snoop
,
"out of memory
\n
"
);
FIXME
(
"out of memory
\n
"
);
return
;
}
}
...
...
@@ -270,7 +270,7 @@ void WINAPI REGS_FUNC(SNOOP_Entry)( CONTEXT *context )
dll
=
dll
->
next
;
}
if
(
!
dll
)
{
FIXME
(
snoop
,
"entrypoint 0x%08lx not found
\n
"
,
entry
);
FIXME
(
"entrypoint 0x%08lx not found
\n
"
,
entry
);
return
;
/* oops */
}
/* guess cdecl ... */
...
...
@@ -365,7 +365,7 @@ void WINAPI REGS_FUNC(SNOOP_Return)( CONTEXT *context )
}
#else
/* !__i386__ */
void
SNOOP_RegisterDLL
(
HMODULE
hmod
,
LPCSTR
name
,
DWORD
nrofordinals
)
{
FIXME
(
snoop
,
"snooping works only on i386 for now.
\n
"
);
FIXME
(
"snooping works only on i386 for now.
\n
"
);
return
;
}
...
...
relay32/utthunk.c
View file @
9fe7a254
...
...
@@ -10,7 +10,7 @@
#include "selectors.h"
#include "callback.h"
#include "process.h"
#include "debug.h"
#include "debug
tools
.h"
#include "debugstr.h"
DEFAULT_DEBUG_CHANNEL
(
thunk
)
...
...
@@ -103,7 +103,7 @@ DWORD WINAPI UTGlue32( FARPROC16 target, LPVOID lpBuff, DWORD dwUserDefined,
segptrList
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
SEGPTR
)
*
nList
);
if
(
!
segptrList
)
{
FIXME
(
thunk
,
"Unable to allocate segptrList!"
);
FIXME
(
"Unable to allocate segptrList!"
);
return
0
;
}
...
...
@@ -280,7 +280,7 @@ VOID WINAPI UTUnRegister( HMODULE hModule )
*/
WORD
WINAPI
UTInit16
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
)
{
FIXME
(
thunk
,
"(%08lx, %08lx, %08lx, %08lx): stub
\n
"
,
x1
,
x2
,
x3
,
x4
);
FIXME
(
"(%08lx, %08lx, %08lx, %08lx): stub
\n
"
,
x1
,
x2
,
x3
,
x4
);
return
0
;
}
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