mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Remove unneed windows.h
svn path=/trunk/; revision=4983
This commit is contained in:
parent
9195641c84
commit
66cc55e3e3
1 changed files with 0 additions and 35 deletions
|
@ -1,35 +0,0 @@
|
|||
#include <wchar.h>
|
||||
typedef wchar_t WCHAR;
|
||||
typedef unsigned short int WORD;
|
||||
typedef unsigned int UINT;
|
||||
typedef unsigned int DWORD;
|
||||
typedef char CHAR;
|
||||
typedef CHAR *LPSTR;
|
||||
typedef WCHAR *LPWSTR;
|
||||
typedef const CHAR *LPCSTR;
|
||||
typedef const WCHAR *LPCWSTR;
|
||||
typedef unsigned int *LPBOOL;
|
||||
|
||||
#ifndef __unix__
|
||||
#define STDCALL __attribute__((stdcall))
|
||||
#else
|
||||
#define STDCALL
|
||||
#endif
|
||||
|
||||
int STDCALL MultiByteToWideChar(
|
||||
UINT CodePage,
|
||||
DWORD dwFlags,
|
||||
LPCSTR lpMultiByteStr,
|
||||
int cbMultiByte,
|
||||
LPWSTR lpWideCharStr,
|
||||
int cchWideChar);
|
||||
|
||||
int STDCALL WideCharToMultiByte(
|
||||
UINT CodePage,
|
||||
DWORD dwFlags,
|
||||
LPCWSTR lpWideCharStr,
|
||||
int cchWideChar,
|
||||
LPSTR lpMultiByteStr,
|
||||
int cbMultiByte,
|
||||
LPCSTR lpDefaultChar,
|
||||
LPBOOL lpUsedDefaultChar);
|
Loading…
Reference in a new issue