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
ba40e4c2
Commit
ba40e4c2
authored
Mar 19, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the definition of PTSTR and LPTSTR from tchar.h to winnt.h.
parent
a4af44ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
12 deletions
+6
-12
tchar.h
include/tchar.h
+0
-8
winnt.h
include/winnt.h
+6
-4
No files found.
include/tchar.h
View file @
ba40e4c2
...
...
@@ -256,14 +256,6 @@ DECL_WINELIB_TYPE_AW (_TCHAR)
typedef
UCHAR
_TUCHARA
;
typedef
WCHAR
_TUCHARW
;
DECL_WINELIB_TYPE_AW
(
_TUCHAR
)
typedef
CHAR
TCHARA
,
*
PTCHARA
;
typedef
WCHAR
TCHARW
,
*
PTCHARW
;
DECL_WINELIB_TYPE_AW
(
TCHAR
)
DECL_WINELIB_TYPE_AW
(
PTCHAR
)
typedef
LPWSTR
PTSTRW
,
LPTSTRW
;
typedef
LPSTR
PTSTRA
,
LPTSTRA
;
DECL_WINELIB_TYPE_AW
(
PTSTR
)
DECL_WINELIB_TYPE_AW
(
LPTSTR
)
#ifdef __cplusplus
}
/* extern "C" */
...
...
include/winnt.h
View file @
ba40e4c2
...
...
@@ -79,12 +79,14 @@
#ifndef __WINE__
# ifdef UNICODE
typedef
LPWSTR
LPTSTR
;
typedef
LPCWSTR
LPCTSTR
;
typedef
WCHAR
TCHAR
,
*
PTCHAR
;
typedef
LPWSTR
PTSTR
,
LPTSTR
;
typedef
LPCWSTR
PCTSTR
,
LPCTSTR
;
#define __TEXT(string) L##string
/*probably wrong */
# else
/* UNICODE */
typedef
LPSTR
LPTSTR
;
typedef
LPCSTR
LPCTSTR
;
typedef
char
TCHAR
,
*
PTCHAR
;
typedef
LPSTR
PTSTR
,
LPTSTR
;
typedef
LPCSTR
PCTSTR
,
LPCTSTR
;
#define __TEXT(string) string
# endif
/* UNICODE */
#endif
/* __WINE__ */
...
...
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