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
bd1689ec
Commit
bd1689ec
authored
Jan 22, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't include debugtools.h in the header file, moved it to the C files
that need it (and used the new wine/debug.h while we are at it).
parent
dbe2cd90
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
63 additions
and
22 deletions
+63
-22
console.c
dlls/msvcrt/console.c
+3
-1
cpp.c
dlls/msvcrt/cpp.c
+3
-1
ctype.c
dlls/msvcrt/ctype.c
+3
-1
data.c
dlls/msvcrt/data.c
+3
-1
dir.c
dlls/msvcrt/dir.c
+3
-1
environ.c
dlls/msvcrt/environ.c
+3
-1
errno.c
dlls/msvcrt/errno.c
+3
-1
except.c
dlls/msvcrt/except.c
+3
-1
exit.c
dlls/msvcrt/exit.c
+3
-1
file.c
dlls/msvcrt/file.c
+3
-1
heap.c
dlls/msvcrt/heap.c
+3
-1
locale.c
dlls/msvcrt/locale.c
+3
-1
main.c
dlls/msvcrt/main.c
+3
-1
math.c
dlls/msvcrt/math.c
+3
-1
mbcs.c
dlls/msvcrt/mbcs.c
+3
-1
misc.c
dlls/msvcrt/misc.c
+3
-1
msvcrt.h
dlls/msvcrt/msvcrt.h
+0
-1
process.c
dlls/msvcrt/process.c
+3
-1
string.c
dlls/msvcrt/string.c
+3
-1
thread.c
dlls/msvcrt/thread.c
+3
-1
time.c
dlls/msvcrt/time.c
+3
-1
wcs.c
dlls/msvcrt/wcs.c
+3
-1
No files found.
dlls/msvcrt/console.c
View file @
bd1689ec
...
...
@@ -13,7 +13,9 @@
#include "msvcrt/malloc.h"
#include "msvcrt/stdio.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
...
...
dlls/msvcrt/cpp.c
View file @
bd1689ec
...
...
@@ -8,7 +8,9 @@
#include "msvcrt/eh.h"
#include "msvcrt/malloc.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
typedef
void
(
*
v_table_ptr
)();
...
...
dlls/msvcrt/ctype.c
View file @
bd1689ec
...
...
@@ -7,7 +7,9 @@
#include "msvcrt/ctype.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* Some abbreviations to make the following table readable */
#define _C_ _CONTROL
...
...
dlls/msvcrt/data.c
View file @
bd1689ec
...
...
@@ -10,7 +10,9 @@
#include "msvcrt/string.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
unsigned
int
MSVCRT___argc
;
unsigned
int
MSVCRT_basemajor
;
/* FIXME: */
...
...
dlls/msvcrt/dir.c
View file @
bd1689ec
...
...
@@ -20,7 +20,9 @@
#include "msvcrt/stdlib.h"
#include "msvcrt/string.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* INTERNAL: Translate finddata_t to PWIN32_FIND_DATAA */
static
void
msvcrt_fttofd
(
LPWIN32_FIND_DATAA
fd
,
struct
_finddata_t
*
ft
)
...
...
dlls/msvcrt/environ.c
View file @
bd1689ec
...
...
@@ -12,7 +12,9 @@
#include "msvcrt/stdlib.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/*********************************************************************
* getenv (MSVCRT.@)
...
...
dlls/msvcrt/errno.c
View file @
bd1689ec
...
...
@@ -15,7 +15,9 @@
#include "msvcrt/string.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* INTERNAL: Set the crt and dos errno's from the OS error given. */
...
...
dlls/msvcrt/except.c
View file @
bd1689ec
...
...
@@ -18,7 +18,9 @@
#include "msvcrt/setjmp.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
typedef
void
(
*
MSVCRT_sig_handler_func
)(
void
);
...
...
dlls/msvcrt/exit.c
View file @
bd1689ec
...
...
@@ -9,7 +9,9 @@
#include "msvcrt/stdlib.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* MT */
extern
CRITICAL_SECTION
MSVCRT_exit_cs
;
...
...
dlls/msvcrt/file.c
View file @
bd1689ec
...
...
@@ -25,7 +25,9 @@
#include "msvcrt/sys/utime.h"
#include "msvcrt/time.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* for stat mode, permissions apply to all,owner and group */
#define MSVCRT_S_IREAD (_S_IREAD | (_S_IREAD >> 3) | (_S_IREAD >> 6))
...
...
dlls/msvcrt/heap.c
View file @
bd1689ec
...
...
@@ -13,7 +13,9 @@
#include "msvcrt/malloc.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* MT */
extern
CRITICAL_SECTION
MSVCRT_heap_cs
;
...
...
dlls/msvcrt/locale.c
View file @
bd1689ec
...
...
@@ -10,7 +10,9 @@
#include "msvcrt.h"
#include "msvcrt/locale.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* FIXME: Need to hold locale for each LC_* type and aggregate
* string to produce lc_all.
...
...
dlls/msvcrt/main.c
View file @
bd1689ec
...
...
@@ -9,7 +9,9 @@
#include "msvcrt/stdio.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* Index to TLS */
DWORD
MSVCRT_tls_index
;
...
...
dlls/msvcrt/math.c
View file @
bd1689ec
...
...
@@ -16,7 +16,9 @@
#include "msvcrt/stdlib.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#ifndef HAVE_FINITE
#ifndef finite
/* Could be a macro */
...
...
dlls/msvcrt/mbcs.c
View file @
bd1689ec
...
...
@@ -18,7 +18,9 @@
#include "msvcrt/wctype.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
unsigned
char
MSVCRT_mbctype
[
257
];
int
MSVCRT___mb_cur_max
=
1
;
...
...
dlls/msvcrt/misc.c
View file @
bd1689ec
...
...
@@ -10,7 +10,9 @@
#include "msvcrt/stdlib.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.h
View file @
bd1689ec
...
...
@@ -6,7 +6,6 @@
#include <string.h>
#include "windef.h"
#include "debugtools.h"
#include "winbase.h"
#include "winerror.h"
#include "winnls.h"
...
...
dlls/msvcrt/process.c
View file @
bd1689ec
...
...
@@ -18,7 +18,9 @@
#include "msvcrt/stdlib.h"
#include "msvcrt/string.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* FIXME: Check file extensions for app to run */
static
const
unsigned
int
EXE
=
'e'
<<
16
|
'x'
<<
8
|
'e'
;
...
...
dlls/msvcrt/string.c
View file @
bd1689ec
...
...
@@ -11,7 +11,9 @@
#include "msvcrt/stdlib.h"
#include "msvcrt/string.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* INTERNAL: MSVCRT_malloc() based strndup */
char
*
msvcrt_strndup
(
const
char
*
buf
,
unsigned
int
size
)
...
...
dlls/msvcrt/thread.c
View file @
bd1689ec
...
...
@@ -8,7 +8,9 @@
#include "msvcrt/malloc.h"
#include "msvcrt/process.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/********************************************************************/
...
...
dlls/msvcrt/time.c
View file @
bd1689ec
...
...
@@ -15,7 +15,9 @@
#include "msvcrt/time.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* INTERNAL: Return formatted current time/date */
...
...
dlls/msvcrt/wcs.c
View file @
bd1689ec
...
...
@@ -15,7 +15,9 @@
#include "msvcrt/string.h"
#include "msvcrt/wctype.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* INTERNAL: MSVCRT_malloc() based wstrndup */
...
...
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