Commit a29dab2e authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Added VERSION_IsOsUnicode().

parent c36a154e
......@@ -12,5 +12,6 @@ typedef enum
extern WINDOWS_VERSION VERSION_GetVersion();
extern char *VERSION_GetVersionName();
extern BOOL32 VERSION_OsIsUnicode(void);
#endif /* __WINE_WINVERSION_H */
......@@ -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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment