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
89c476f9
Commit
89c476f9
authored
Dec 19, 2000
by
François Gouget
Committed by
Alexandre Julliard
Dec 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_str{dec,inc}: Cast the parameters to the proper type first
Added definitions for _tfinddata*
parent
42b3ee74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
tchar.h
include/tchar.h
+4
-2
No files found.
include/tchar.h
View file @
89c476f9
...
...
@@ -72,8 +72,8 @@ char *CRTDLL__strrev(char *string);
/*****************************************************************************
* tchar routines
*/
#define _strdec(start,current) (start<current?(current)-1:NULL)
#define _strinc(current) ((current)+1)
#define _strdec(start,current) (start<current?(
(char*)
current)-1:NULL)
#define _strinc(current) ((
(char*)
current)+1)
/* FIXME: _strncnt and strncnt are missing */
/* FIXME: _strspnp is not implemented */
...
...
@@ -193,6 +193,8 @@ char *CRTDLL__strrev(char *string);
#define _texecvp WINE_tchar_routine(_execvp, _execvp, _wexecvp)
#define _texecvpe WINE_tchar_routine(_execvpe, _execvpe, _wexecvpe)
#define _tfdopen WINE_tchar_routine(_fdopen, _fdopen, _wfdopen)
#define _tfinddata_t WINE_tchar_routine(_finddata_t, _finddata_t, _wfinddata_t)
#define _tfinddatai64_t WINE_tchar_routine(_finddatai64_t,_finddatai64_t,_wfinddatai64_t)
#define _tfindfirst WINE_tchar_routine(_findfirst, _findfirst, _wfindfirst)
#define _tfindnext WINE_tchar_routine(_findnext, _findnext, _wfindnext)
#define _tfopen WINE_tchar_routine(fopen, fopen, _wfopen)
...
...
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