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
a2073f29
Commit
a2073f29
authored
Apr 30, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxerr9: Don't use Wine debugging macros in static libraries.
parent
73425081
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
dxerr9.c
dlls/dxerr9/dxerr9.c
+0
-10
No files found.
dlls/dxerr9/dxerr9.c
View file @
a2073f29
...
@@ -42,10 +42,6 @@
...
@@ -42,10 +42,6 @@
#include "dxerr9.h"
#include "dxerr9.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dxerr
);
typedef
struct
{
typedef
struct
{
HRESULT
hr
;
HRESULT
hr
;
const
CHAR
*
resultA
;
const
CHAR
*
resultA
;
...
@@ -59,7 +55,6 @@ typedef struct {
...
@@ -59,7 +55,6 @@ typedef struct {
const
char
*
WINAPI
DXGetErrorString9A
(
HRESULT
hr
)
const
char
*
WINAPI
DXGetErrorString9A
(
HRESULT
hr
)
{
{
unsigned
int
i
,
j
,
k
=
0
;
unsigned
int
i
,
j
,
k
=
0
;
TRACE
(
"(0x%08x)
\n
"
,
hr
);
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
j
=
k
+
(
i
/
2
);
j
=
k
+
(
i
/
2
);
...
@@ -78,7 +73,6 @@ const WCHAR * WINAPI DXGetErrorString9W(HRESULT hr)
...
@@ -78,7 +73,6 @@ const WCHAR * WINAPI DXGetErrorString9W(HRESULT hr)
{
{
static
const
WCHAR
unknown
[]
=
{
'U'
,
'n'
,
'k'
,
'n'
,
'o'
,
'w'
,
'n'
,
0
};
static
const
WCHAR
unknown
[]
=
{
'U'
,
'n'
,
'k'
,
'n'
,
'o'
,
'w'
,
'n'
,
0
};
unsigned
int
i
,
j
,
k
=
0
;
unsigned
int
i
,
j
,
k
=
0
;
TRACE
(
"(0x%08x)
\n
"
,
hr
);
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
j
=
k
+
(
i
/
2
);
j
=
k
+
(
i
/
2
);
...
@@ -96,7 +90,6 @@ const WCHAR * WINAPI DXGetErrorString9W(HRESULT hr)
...
@@ -96,7 +90,6 @@ const WCHAR * WINAPI DXGetErrorString9W(HRESULT hr)
const
char
*
WINAPI
DXGetErrorDescription9A
(
HRESULT
hr
)
const
char
*
WINAPI
DXGetErrorDescription9A
(
HRESULT
hr
)
{
{
unsigned
int
i
,
j
,
k
=
0
;
unsigned
int
i
,
j
,
k
=
0
;
TRACE
(
"(0x%08x)
\n
"
,
hr
);
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
j
=
k
+
(
i
/
2
);
j
=
k
+
(
i
/
2
);
...
@@ -115,7 +108,6 @@ const WCHAR * WINAPI DXGetErrorDescription9W(HRESULT hr)
...
@@ -115,7 +108,6 @@ const WCHAR * WINAPI DXGetErrorDescription9W(HRESULT hr)
{
{
static
const
WCHAR
na
[]
=
{
'n'
,
'/'
,
'a'
,
0
};
static
const
WCHAR
na
[]
=
{
'n'
,
'/'
,
'a'
,
0
};
unsigned
int
i
,
j
,
k
=
0
;
unsigned
int
i
,
j
,
k
=
0
;
TRACE
(
"(0x%08x)
\n
"
,
hr
);
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
for
(
i
=
sizeof
(
info
)
/
sizeof
(
info
[
0
]);
i
!=
0
;
i
/=
2
)
{
j
=
k
+
(
i
/
2
);
j
=
k
+
(
i
/
2
);
...
@@ -133,7 +125,6 @@ const WCHAR * WINAPI DXGetErrorDescription9W(HRESULT hr)
...
@@ -133,7 +125,6 @@ const WCHAR * WINAPI DXGetErrorDescription9W(HRESULT hr)
HRESULT
WINAPI
DXTraceA
(
const
char
*
strFile
,
DWORD
dwLine
,
HRESULT
hr
,
const
char
*
strMsg
,
BOOL
bPopMsgBox
)
HRESULT
WINAPI
DXTraceA
(
const
char
*
strFile
,
DWORD
dwLine
,
HRESULT
hr
,
const
char
*
strMsg
,
BOOL
bPopMsgBox
)
{
{
char
msg
[
1024
];
char
msg
[
1024
];
TRACE
(
"(%p,%d,0x%08x,%p,%d)
\n
"
,
strFile
,
dwLine
,
hr
,
strMsg
,
bPopMsgBox
);
if
(
bPopMsgBox
)
{
if
(
bPopMsgBox
)
{
snprintf
(
msg
,
sizeof
(
msg
),
"File: %s
\n
Line: %d
\n
Error Code: %s (0x%08x)
\n
Calling: %s"
,
snprintf
(
msg
,
sizeof
(
msg
),
"File: %s
\n
Line: %d
\n
Error Code: %s (0x%08x)
\n
Calling: %s"
,
...
@@ -151,7 +142,6 @@ HRESULT WINAPI DXTraceA(const char* strFile, DWORD dwLine, HRESULT hr, const cha
...
@@ -151,7 +142,6 @@ HRESULT WINAPI DXTraceA(const char* strFile, DWORD dwLine, HRESULT hr, const cha
HRESULT
WINAPI
DXTraceW
(
const
char
*
strFile
,
DWORD
dwLine
,
HRESULT
hr
,
const
WCHAR
*
strMsg
,
BOOL
bPopMsgBox
)
HRESULT
WINAPI
DXTraceW
(
const
char
*
strFile
,
DWORD
dwLine
,
HRESULT
hr
,
const
WCHAR
*
strMsg
,
BOOL
bPopMsgBox
)
{
{
WCHAR
msg
[
1024
];
WCHAR
msg
[
1024
];
TRACE
(
"(%p,%d,0x%08x,%p,%d)
\n
"
,
strFile
,
dwLine
,
hr
,
strMsg
,
bPopMsgBox
);
if
(
bPopMsgBox
)
{
if
(
bPopMsgBox
)
{
static
const
WCHAR
format
[]
=
{
'F'
,
'i'
,
'l'
,
'e'
,
':'
,
' '
,
'%'
,
's'
,
'\\'
,
'n'
,
'L'
,
'i'
,
'n'
,
static
const
WCHAR
format
[]
=
{
'F'
,
'i'
,
'l'
,
'e'
,
':'
,
' '
,
'%'
,
's'
,
'\\'
,
'n'
,
'L'
,
'i'
,
'n'
,
...
...
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