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
a29dab2e
Commit
a29dab2e
authored
Oct 24, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Oct 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added VERSION_IsOsUnicode().
parent
c36a154e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
winversion.h
include/winversion.h
+1
-0
version.c
misc/version.c
+18
-0
No files found.
include/winversion.h
View file @
a29dab2e
...
...
@@ -12,5 +12,6 @@ typedef enum
extern
WINDOWS_VERSION
VERSION_GetVersion
();
extern
char
*
VERSION_GetVersionName
();
extern
BOOL32
VERSION_OsIsUnicode
(
void
);
#endif
/* __WINE_WINVERSION_H */
misc/version.c
View file @
a29dab2e
...
...
@@ -359,3 +359,21 @@ UINT32 WINAPI OaBuildVersion()
return
0x0
;
}
}
/***********************************************************************
* VERSION_OsIsUnicode [internal]
*
* NOTES
* some functions getting sometimes LPSTR sometimes LPWSTR...
*
*/
BOOL32
VERSION_OsIsUnicode
(
void
)
{
switch
(
VERSION_GetVersion
())
{
case
NT351
:
case
NT40
:
return
TRUE
;
default:
return
FALSE
;
}
}
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