Changeset 21299 for trunk/include/win
- Timestamp:
- Jun 16, 2009, 3:08:41 PM (16 years ago)
- Location:
- trunk/include/win
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/winbase.h
r10579 r21299 185 185 DWORD dwLowDateTime; 186 186 DWORD dwHighDateTime; 187 } FILETIME, *LPFILETIME ;187 } FILETIME, *LPFILETIME, *PFILETIME; 188 188 #endif /* _FILETIME_ */ 189 189 -
trunk/include/win/windef.h
r10627 r21299 151 151 #endif 152 152 153 153 #ifndef __EMX__ 154 154 #if (__IBMC__ < 400) && (__IBMCPP__ < 360) 155 155 #ifndef __declspec … … 165 165 #endif 166 166 #endif // (__IBMC__ < 400) && (__IBMCPP__ < 360) 167 #endif // __EMX__ 167 168 168 169 #ifndef CONST … … 309 310 typedef double __int64; 310 311 #elif defined (__EMX__) 312 #ifndef _JAVASOFT_JNI_MD_H_ 311 313 typedef long long __int64; 314 #endif 312 315 #endif 313 316 #else … … 532 535 #define __TEXT(string) L##string /*probably wrong */ 533 536 # else /* UNICODE */ 534 typedef CHAR TCHAR;537 typedef CHAR TCHAR, *PTCHAR; 535 538 typedef LPSTR LPTSTR; 536 539 typedef LPCSTR LPCTSTR; -
trunk/include/win/wine/unicode.h
r9962 r21299 68 68 69 69 #ifdef __EMX__ 70 #define _K32CONV _ optlink70 #define _K32CONV _Optlink 71 71 #else 72 72 #define _K32CONV -
trunk/include/win/winnt.h
r10421 r21299 122 122 # define __TEXT(string) L##string 123 123 # else /* UNICODE */ 124 #ifndef __WINE_WINDEF_H 124 125 typedef CHAR TCHAR, *PTCHAR; 125 126 typedef LPSTR PTSTR; 126 127 typedef LPCSTR PCTSTR; 128 #endif 127 129 # define __TEXT(string) string 128 130 # endif /* UNICODE */ -
trunk/include/win/winuser.h
r10579 r21299 3731 3731 LONG WINAPI GetWindowLongW(HWND,INT); 3732 3732 #define GetWindowLong WINELIB_NAME_AW(GetWindowLong) 3733 3734 #ifndef GetWindowLongPtr 3735 #define GetWindowLongPtrA GetWindowLongA 3736 #define GetWindowLongPtrW GetWindowLongW 3737 #ifdef UNICODE 3738 #define GetWindowLongPtr GetWindowLongPtrW 3739 #else 3740 #define GetWindowLongPtr GetWindowLongPtrA 3741 #endif // !UNICODE 3742 #endif // !GetWindowLongPtr 3743 3744 #ifndef SetWindowLongPtr 3745 #define SetWindowLongPtrA SetWindowLongA 3746 #define SetWindowLongPtrW SetWindowLongW 3747 #ifdef UNICODE 3748 #define SetWindowLongPtr SetWindowLongPtrW 3749 #else 3750 #define SetWindowLongPtr SetWindowLongPtrA 3751 #endif // !UNICODE 3752 #endif // !SetWindowLongPtr 3753 3733 3754 BOOL WINAPI GetWindowPlacement(HWND,LPWINDOWPLACEMENT); 3734 3755 BOOL WINAPI GetWindowRect(HWND,LPRECT);
Note:
See TracChangeset
for help on using the changeset viewer.
