Changeset 19137
- Timestamp:
- Jun 7, 2002, 10:03:38 AM (23 years ago)
- Location:
- tags/trunk/include/win
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/include/win/shlwapi.h ¶
r18492 r19137 299 299 #define PathParseIconLocation WINELIB_NAME_AW(PathParseIconLocation) 300 300 301 LPSTRWINAPI PathQuoteSpacesA(LPSTR);302 LPWSTRWINAPI PathQuoteSpacesW(LPWSTR);301 VOID WINAPI PathQuoteSpacesA(LPSTR); 302 VOID WINAPI PathQuoteSpacesW(LPWSTR); 303 303 #define PathQuoteSpaces WINELIB_NAME_AW(PathQuoteSpaces) 304 304 … … 335 335 #define PathSearchAndQualify WINELIB_NAME_AW(PathSearchAndQualify) 336 336 337 BOOLWINAPI PathSetDlgItemPathA(HWND,int,LPCSTR);338 BOOLWINAPI PathSetDlgItemPathW(HWND,int,LPCWSTR);337 VOID WINAPI PathSetDlgItemPathA(HWND,int,LPCSTR); 338 VOID WINAPI PathSetDlgItemPathW(HWND,int,LPCWSTR); 339 339 #define PathSetDlgItemPath WINELIB_NAME_AW(PathSetDlgItemPath) 340 340 … … 375 375 #define PathIsLFNFileSpec WINELIB_NAME_AW(PathIsLFNFileSpec) 376 376 377 LPCSTRWINAPI PathFindSuffixArrayA(LPCSTR,LPCSTR *,int);378 LPCWSTRWINAPI PathFindSuffixArrayW(LPCWSTR,LPCWSTR *,int);377 int WINAPI PathFindSuffixArrayA(LPCSTR,LPCSTR *,int); 378 int WINAPI PathFindSuffixArrayW(LPCWSTR,LPCWSTR *,int); 379 379 #define PathFindSuffixArray WINELIB_NAME_AW(PathFindSuffixArray) 380 380 -
TabularUnified tags/trunk/include/win/winbase.h ¶
r18979 r19137 1665 1665 BOOL WINAPI HeapValidate(HANDLE,DWORD,LPCVOID); 1666 1666 BOOL WINAPI HeapWalk (HANDLE, LPVOID); 1667 DWORD WINAPI InitializeAcl(PACL,DWORD,DWORD); 1668 BOOL WINAPI InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR,DWORD); 1667 1669 BOOL WINAPI InitializeSid(PSID,PSID_IDENTIFIER_AUTHORITY,BYTE); 1670 BOOL WINAPI IsTextUnicode(CONST LPVOID lpBuffer, int cb, LPINT lpi); 1668 1671 BOOL WINAPI IsValidSecurityDescriptor(PSECURITY_DESCRIPTOR); 1669 1672 BOOL WINAPI IsValidSid(PSID); 1673 BOOL WINAPI ImpersonateLoggedOnUser(HANDLE); 1670 1674 BOOL WINAPI ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL); 1675 BOOL WINAPI IsProcessorFeaturePresent(DWORD); 1671 1676 LONG WINAPI InterlockedCompareExchange( PLONG dest, LONG xchg, LONG compare ); 1672 1677 LONG WINAPI InterlockedDecrement(LPLONG); -
TabularUnified tags/trunk/include/win/wine/unicode.h ¶
r18973 r19137 17 17 #ifndef strncasecmp 18 18 #define strncasecmp lstrncmpiA 19 #endif 20 #ifndef strcasecmp 21 #define strcasecmp lstrcmpiA 19 22 #endif 20 23
Note:
See TracChangeset
for help on using the changeset viewer.