Changeset 8420 for trunk/include
- Timestamp:
- May 15, 2002, 2:37:29 PM (23 years ago)
- Location:
- trunk/include/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/prsht.h
r4834 r8420 1 /* $Id: prsht.h,v 1. 6 2000-12-24 12:28:20sandervl Exp $ */1 /* $Id: prsht.h,v 1.7 2002-05-15 12:37:28 sandervl Exp $ */ 2 2 3 3 #ifndef _WINE_PRSHT_H … … 47 47 LPCSTR pszTemplate; 48 48 LPCDLGTEMPLATEA pResource; 49 }DUMMYUNIONNAME 1;49 }DUMMYUNIONNAME; 50 50 union 51 51 { … … 58 58 LPFNPSPCALLBACKA pfnCallback; 59 59 UINT* pcRefParent; 60 LPC WSTR pszHeaderTitle;61 LPC WSTR pszHeaderSubTitle;60 LPCSTR pszHeaderTitle; 61 LPCSTR pszHeaderSubTitle; 62 62 } PROPSHEETPAGEA, *LPPROPSHEETPAGEA; 63 63 … … 73 73 LPCWSTR pszTemplate; 74 74 LPCDLGTEMPLATEW pResource; 75 }DUMMYUNIONNAME 1;75 }DUMMYUNIONNAME; 76 76 union 77 77 { … … 101 101 HICON hIcon; 102 102 LPCSTR pszIcon; 103 }DUMMYUNIONNAME 1;103 }DUMMYUNIONNAME; 104 104 LPCSTR pszCaption; 105 105 UINT nPages; … … 139 139 { 140 140 HICON hIcon; 141 LPC STR pszIcon;142 }DUMMYUNIONNAME 1;141 LPCWSTR pszIcon; 142 }DUMMYUNIONNAME; 143 143 LPCWSTR pszCaption; 144 144 UINT nPages; … … 221 221 #define PSH_USEICONID 0x0004 222 222 #define PSH_PROPSHEETPAGE 0x0008 223 #define PSH_WIZARDHASFINISH 0x0010 223 224 #define PSH_WIZARD 0x0020 224 225 #define PSH_USEPSTARTPAGE 0x0040 … … 238 239 #define PSH_USEHBMHEADER 0x00100000 239 240 #define PSH_USEPAGELANG 0x00200000 241 #define PSH_WIZARD_LITE 0x00400000 242 #define PSH_NOCONTEXTHELP 0x02000000 240 243 241 244 #define PSCB_INITIALIZED 1 -
trunk/include/win/winbase.h
r8396 r8420 1660 1660 LONG WINAPI InterlockedExchangeAdd( PLONG dest, LONG incr ); 1661 1661 LONG WINAPI InterlockedIncrement(LPLONG); 1662 1663 /* FIXME: should handle platforms where sizeof(void*) != sizeof(long) */ 1664 #define InterlockedCompareExchangePointer(dest, xchg, compare) \ 1665 (PVOID)InterlockedCompareExchange( (PLONG)dest, (LONG)xchg, (LONG)compare ) 1666 1667 #define InterlockedExchangePointer(dest, val) \ 1668 (PVOID)InterlockedExchange( (PLONG)dest, (LONG)val ) 1669 1662 1670 BOOL WINAPI IsDBCSLeadByteEx(UINT,BYTE); 1663 1671 BOOL WINAPI IsProcessorFeaturePresent(DWORD); -
trunk/include/win/wine/unicode.h
r7824 r8420 92 92 { 93 93 return get_char_typeW(wc) & C1_XDIGIT; 94 } 95 96 inline static int isspaceW( WCHAR wc ) 97 { 98 return get_char_typeW(wc) & C1_SPACE; 94 99 } 95 100
Note:
See TracChangeset
for help on using the changeset viewer.