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
3ea0c073
Commit
3ea0c073
authored
Mar 21, 2001
by
Jeff Garzik
Committed by
Alexandre Julliard
Mar 21, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Warning fixes.
parent
f46eb1db
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
5 deletions
+9
-5
d3dtexture.c
dlls/ddraw/d3dtexture.c
+3
-1
mcicda.c
dlls/winmm/mcicda/mcicda.c
+2
-1
netspi.h
include/netspi.h
+1
-1
main.c
server/main.c
+2
-1
trace.c
server/trace.c
+1
-1
No files found.
dlls/ddraw/d3dtexture.c
View file @
3ea0c073
...
...
@@ -360,8 +360,10 @@ HRESULT WINAPI IDirect3DTexture2Impl_Load(
DDSURFACEDESC
*
src_d
,
*
dst_d
;
static
void
(
*
ptr_ColorTableEXT
)
(
GLenum
target
,
GLenum
internalformat
,
GLsizei
width
,
GLenum
format
,
GLenum
type
,
const
GLvoid
*
table
)
=
NULL
;
#if 0
static BOOL color_table_queried = FALSE;
#endif
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
ilpD3DTexture2
);
TRACE
(
"Copied surface %p to surface %p
\n
"
,
ilpD3DTexture2
->
surface
,
This
->
surface
);
...
...
dlls/winmm/mcicda/mcicda.c
View file @
3ea0c073
...
...
@@ -706,7 +706,8 @@ static DWORD MCICDA_Seek(UINT wDevID, DWORD dwFlags, LPMCI_SEEK_PARMS lpParms)
at
=
lpParms
->
dwTo
;
break
;
default:
TRACE
(
"Seeking to ??=%lu
\n
"
,
dwFlags
);
TRACE
(
"Unknown seek action %08lX
\n
"
,
(
dwFlags
&
~
(
MCI_NOTIFY
|
MCI_WAIT
)));
return
MCIERR_UNSUPPORTED_FUNCTION
;
}
if
(
CDROM_Audio_Seek
(
&
wmcda
->
wcda
,
at
,
-
1
)
==
-
1
)
{
...
...
include/netspi.h
View file @
3ea0c073
...
...
@@ -131,5 +131,5 @@ DWORD WINAPI NPSNotifyRegisterA(enum NOTIFYTYPE,NOTIFYCALLBACK);
LPVOID
WINAPI
NPSNotifyGetContextA
(
NOTIFYCALLBACK
);
#define NPSNotifyGetContext WINELIB_NAME_AW(NPSNotifyGetContext)
#endif
_NETSPI_H_
#endif
/* _NETSPI_H_ */
server/main.c
View file @
3ea0c073
...
...
@@ -113,5 +113,6 @@ int main( int argc, char *argv[] )
close_atom_table
();
dump_objects
();
/* dump any remaining objects */
#endif
exit
(
0
);
return
0
;
}
server/trace.c
View file @
3ea0c073
...
...
@@ -1902,7 +1902,7 @@ void trace_request( struct thread *thread, const union generic_request *request
req_dumpers
[
req
](
request
);
fprintf
(
stderr
,
" )
\n
"
);
}
else
fprintf
(
stderr
,
"%08x: %d(?
??
)
\n
"
,
(
unsigned
int
)
thread
,
req
);
else
fprintf
(
stderr
,
"%08x: %d(?)
\n
"
,
(
unsigned
int
)
thread
,
req
);
}
void
trace_reply
(
struct
thread
*
thread
,
const
union
generic_request
*
request
)
...
...
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