Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
cf07e100
Commit
cf07e100
authored
Oct 23, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 23, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use wine/unicode.h in the header files, include it directly
where needed instead.
parent
da93e83b
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
8 deletions
+21
-8
security.c
dlls/advapi32/security.c
+2
-0
listview.c
dlls/comctl32/listview.c
+2
-0
shell32_main.c
dlls/shell32/shell32_main.c
+1
-0
directory.c
files/directory.c
+9
-0
file.h
include/file.h
+0
-7
heap.h
include/heap.h
+0
-1
loadorder.c
loader/loadorder.c
+2
-0
module.c
loader/module.c
+2
-0
dosconf.c
msdos/dosconf.c
+1
-0
clipboard.c
windows/clipboard.c
+2
-0
No files found.
dlls/advapi32/security.c
View file @
cf07e100
...
...
@@ -26,7 +26,9 @@
#include "heap.h"
#include "winternl.h"
#include "ntsecapi.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
advapi
);
...
...
dlls/comctl32/listview.c
View file @
cf07e100
...
...
@@ -133,7 +133,9 @@
#include "heap.h"
#include "commctrl.h"
#include "comctl32.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
listview
);
...
...
dlls/shell32/shell32_main.c
View file @
cf07e100
...
...
@@ -42,6 +42,7 @@
#include "shell32_main.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
shell
);
...
...
files/directory.c
View file @
cf07e100
...
...
@@ -57,6 +57,15 @@ static DOS_FULL_NAME DIR_System;
static
const
WCHAR
wineW
[]
=
{
'w'
,
'i'
,
'n'
,
'e'
,
0
};
/***********************************************************************
* FILE_contains_pathW
*/
inline
static
int
FILE_contains_pathW
(
LPCWSTR
name
)
{
return
((
*
name
&&
(
name
[
1
]
==
':'
))
||
strchrW
(
name
,
'/'
)
||
strchrW
(
name
,
'\\'
));
}
/***********************************************************************
* DIR_GetPath
*
* Get a path name from the wine.ini file and make sure it is valid.
...
...
include/file.h
View file @
cf07e100
...
...
@@ -28,7 +28,6 @@
#include <sys/types.h>
#include "winbase.h"
#include "wine/windef16.h"
/* HFILE16 */
#include "wine/unicode.h"
#define MAX_PATHNAME_LEN 1024
...
...
@@ -68,12 +67,6 @@ inline static int FILE_contains_path (LPCSTR name)
strchr
(
name
,
'/'
)
||
strchr
(
name
,
'\\'
));
}
inline
static
int
FILE_contains_pathW
(
LPCWSTR
name
)
{
return
((
*
name
&&
(
name
[
1
]
==
':'
))
||
strchrW
(
name
,
'/'
)
||
strchrW
(
name
,
'\\'
));
}
/* files/file.c */
extern
mode_t
FILE_umask
;
extern
int
FILE_strcasecmp
(
const
char
*
str1
,
const
char
*
str2
);
...
...
include/heap.h
View file @
cf07e100
...
...
@@ -25,7 +25,6 @@
#include "winbase.h"
#include "winnls.h"
#include "wine/unicode.h"
/* strdup macros */
/* DO NOT USE THEM!! they will go away soon */
...
...
loader/loadorder.c
View file @
cf07e100
...
...
@@ -30,7 +30,9 @@
#include "winternl.h"
#include "file.h"
#include "module.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
module
);
...
...
loader/module.c
View file @
cf07e100
...
...
@@ -36,7 +36,9 @@
#include "heap.h"
#include "file.h"
#include "module.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "wine/server.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
module
);
...
...
msdos/dosconf.c
View file @
cf07e100
...
...
@@ -36,6 +36,7 @@
#include "msdos.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
profile
);
...
...
windows/clipboard.c
View file @
cf07e100
...
...
@@ -49,7 +49,9 @@
#include "user.h"
#include "win.h"
#include "clipboard.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
clipboard
);
...
...
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