Changeset 4075 for trunk/include/win
- Timestamp:
- Aug 23, 2000, 8:05:56 PM (25 years ago)
- Location:
- trunk/include/win
- Files:
-
- 6 edited
-
poppack.h (modified) (1 diff)
-
pshpack1.h (modified) (1 diff)
-
pshpack2.h (modified) (1 diff)
-
pshpack4.h (modified) (1 diff)
-
shlwapi.h (modified) (3 diffs)
-
windef.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/poppack.h
r4 r4075 1 /* $Id: poppack.h,v 1. 1 1999-05-24 20:19:17 ktkExp $ */1 /* $Id: poppack.h,v 1.2 2000-08-23 18:05:55 sandervl Exp $ */ 2 2 3 3 #ifdef __WINE_PSHPACK_H 4 4 #undef __WINE_PSHPACK_H 5 5 6 #if defined(__GNUC__) || defined(__SUNPRO_C) || (defined(__IBMC__) || defined(__IBMCPP__)) 6 #if defined(__GNUC__) || defined(__SUNPRO_C) || (defined(__IBMC__) || defined(__IBMCPP__)) || defined(__WATCOMC__) 7 7 #pragma pack() 8 8 #elif defined(__SUNPRO_CC) -
trunk/include/win/pshpack1.h
r4 r4075 1 /* $Id: pshpack1.h,v 1. 1 1999-05-24 20:19:17 ktkExp $ */1 /* $Id: pshpack1.h,v 1.2 2000-08-23 18:05:55 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_PSHPACK_H 4 4 #define __WINE_PSHPACK_H 1 5 5 6 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || (defined(__IBMC__) || defined(__IBMCPP__)) 6 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || (defined(__IBMC__) || defined(__IBMCPP__)) || defined(__WATCOMC__) 7 7 #pragma pack(1) 8 8 #elif !defined(RC_INVOKED) -
trunk/include/win/pshpack2.h
r4 r4075 1 /* $Id: pshpack2.h,v 1. 1 1999-05-24 20:19:17 ktkExp $ */1 /* $Id: pshpack2.h,v 1.2 2000-08-23 18:05:56 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_PSHPACK_H 4 4 #define __WINE_PSHPACK_H 2 5 5 6 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || (defined(__IBMC__) || defined(__IBMCPP__)) 6 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || (defined(__IBMC__) || defined(__IBMCPP__)) || defined(__WATCOMC__) 7 7 #pragma pack(2) 8 8 #elif !defined(RC_INVOKED) -
trunk/include/win/pshpack4.h
r4 r4075 1 /* $Id: pshpack4.h,v 1. 1 1999-05-24 20:19:18 ktkExp $ */1 /* $Id: pshpack4.h,v 1.2 2000-08-23 18:05:56 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_PSHPACK_H 4 4 #define __WINE_PSHPACK_H 4 5 5 6 #if defined(__GNUC__) || defined(__SUNPRO_CC) || (defined(__IBMC__) || defined(__IBMCPP__)) 6 #if defined(__GNUC__) || defined(__SUNPRO_CC) || (defined(__IBMC__) || defined(__IBMCPP__)) || defined(__WATCOMC__) 7 7 #pragma pack(4) 8 8 #elif defined(__SUNPRO_C) -
trunk/include/win/shlwapi.h
r3645 r4075 1 /* $Id: shlwapi.h,v 1.2 2000-08-23 18:05:56 sandervl Exp $ */ 1 2 #ifndef __WINE_SHLWAPI_H 2 3 #define __WINE_SHLWAPI_H … … 8 9 extern "C" { 9 10 #endif /* defined(__cplusplus) */ 11 12 BOOL WINAPI PathAppendA(LPSTR lpszPath1,LPCSTR lpszPath2); 13 BOOL WINAPI PathAppendW(LPWSTR lpszPath1,LPCWSTR lpszPath2); 14 15 LPSTR WINAPI PathBuildRootA(LPSTR lpszPath, int drive); 16 LPWSTR WINAPI PathBuildRootW(LPWSTR lpszPath, int drive); 17 18 LPSTR WINAPI PathGetArgsA(LPCSTR lpszPath); 19 LPWSTR WINAPI PathGetArgsW(LPCWSTR lpszPath); 20 21 BOOL WINAPI PathRemoveFileSpecA(LPSTR lpszPath); 22 BOOL WINAPI PathRemoveFileSpecW(LPWSTR lpszPath); 23 24 void WINAPI PathStripPathA(LPSTR lpszPath); 25 void WINAPI PathStripPathW(LPWSTR lpszPath); 26 27 void WINAPI PathRemoveArgsA(LPSTR lpszPath); 28 void WINAPI PathRemoveArgsW(LPWSTR lpszPath); 29 30 void WINAPI PathRemoveExtensionA(LPSTR lpszPath); 31 void WINAPI PathRemoveExtensionW(LPWSTR lpszPath); 32 33 void WINAPI PathUnquoteSpacesA(LPSTR str); 34 void WINAPI PathUnquoteSpacesW(LPWSTR str); 35 36 int WINAPI PathParseIconLocationA(LPSTR lpszPath); 37 int WINAPI PathParseIconLocationW(LPWSTR lpszPath); 38 39 BOOL WINAPI PathIsDirectoryA(LPCSTR lpszPath); 40 BOOL WINAPI PathIsDirectoryW(LPCWSTR lpszPath); 41 42 BOOL WINAPI PathFileExistsA(LPCSTR lpszPath); 43 BOOL WINAPI PathFileExistsW(LPCWSTR lpszPath); 44 45 BOOL WINAPI PathIsSameRootA(LPCSTR lpszPath1, LPCSTR lpszPath2); 46 BOOL WINAPI PathIsSameRootW(LPCWSTR lpszPath1, LPCWSTR lpszPath2); 47 48 BOOL WINAPI PathSetDlgItemPathA(HWND hDlg, int id, LPCSTR pszPath); 49 BOOL WINAPI PathSetDlgItemPathW(HWND hDlg, int id, LPCWSTR pszPath); 10 50 11 51 LPSTR WINAPI PathFindFileNameA(LPCSTR pPath); … … 30 70 #define PathIsURL WINELIB_NAME_AW(PathIsURL) 31 71 72 BOOL WINAPI PathAddExtensionA(LPSTR pszPath, LPCSTR pszExt); 73 BOOL WINAPI PathAddExtensionW(LPWSTR pszPath, LPCWSTR pszExt); 74 #define PathAddExtension WINELIB_NAME_AW(PathAddExtension) 75 76 BOOL WINAPI PathStripToRootA(LPSTR pszPath); 77 BOOL WINAPI PathStripToRootW(LPWSTR pszPath); 78 #define PathStripToRoot WINELIB_NAME_AW(PathStripToRoot) 79 80 LPSTR WINAPI StrChrA(LPCSTR lpStart, WORD wMatch); 81 LPWSTR WINAPI StrChrW(LPCWSTR lpStart, WCHAR wMatch); 82 #define StrChr WINELIB_NAME_AW(StrChr) 83 84 void WINAPI PathRemoveBlanksA(LPSTR lpszPath); 85 void WINAPI PathRemoveBlanksW(LPWSTR lpszPath); 86 #define PathRemoveBlanks WINELIB_NAME_AW(PathRemoveBlanks) 87 void WINAPI PathRemoveBlanksAW(LPVOID lpszPath); 88 32 89 #ifdef __cplusplus 33 90 } /* extern "C" */ -
trunk/include/win/windef.h
r3318 r4075 1 /* $Id: windef.h,v 1.2 3 2000-04-05 14:17:01sandervl Exp $ */1 /* $Id: windef.h,v 1.24 2000-08-23 18:05:56 sandervl Exp $ */ 2 2 3 3 /* … … 225 225 typedef float FLOAT; 226 226 #ifdef __WIN32OS2__ 227 #if (__IBMC__ < 400) && (__IBMCPP__ < 360) 227 #if (__IBMC__ < 400) && (__IBMCPP__ < 360) && !defined(__WATCOMC__) 228 228 typedef double __int64; 229 229 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
