Changeset 3553 for trunk/include/win/shell.h
- Timestamp:
- May 18, 2000, 8:06:13 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/shell.h
r3242 r3553 1 /* $Id: shell.h,v 1. 2 2000-03-26 16:29:40 cbratschiExp $ */1 /* $Id: shell.h,v 1.3 2000-05-18 18:06:13 sandervl Exp $ */ 2 2 3 3 /* … … 130 130 LPVOID WINAPI PathCombineAW(LPVOID szDest, LPCVOID lpszDir, LPCVOID lpszFile); 131 131 132 LP CSTR WINAPI PathFindExtensionA(LPCSTR path);133 LP CWSTR WINAPI PathFindExtensionW(LPCWSTR path);132 LPSTR WINAPI PathFindExtensionA(LPCSTR path); 133 LPWSTR WINAPI PathFindExtensionW(LPCWSTR path); 134 134 #define PathFindExtension WINELIB_NAME_AW(PathFindExtension) 135 LP CVOID WINAPI PathFindExtensionAW(LPCVOID path);136 137 LP CSTR WINAPI PathGetExtensionA(LPCSTR path, DWORD y, DWORD x);138 LP CWSTR WINAPI PathGetExtensionW(LPCWSTR path, DWORD y, DWORD x);135 LPVOID WINAPI PathFindExtensionAW(LPCVOID path); 136 137 LPSTR WINAPI PathGetExtensionA(LPCSTR path); 138 LPWSTR WINAPI PathGetExtensionW(LPCWSTR path); 139 139 #define PathGetExtension WINELIB_NAME_AW(PathGetExtension) 140 LPCVOID WINAPI PathGetExtensionAW(LPCVOID path, DWORD y, DWORD x); 141 142 LPCSTR WINAPI PathFindFilenameA(LPCSTR path); 143 LPCWSTR WINAPI PathFindFilenameW(LPCWSTR path); 144 #define PathFindFilename WINELIB_NAME_AW(PathFindFilename) 145 LPCVOID WINAPI PathFindFilenameAW(LPCVOID path); 140 LPVOID WINAPI PathGetExtensionAW(LPCVOID path); 141 142 LPSTR WINAPI PathRemoveBackslashA(LPSTR lpszPath); 143 LPWSTR WINAPI PathRemoveBackslashW(LPWSTR lpszPath); 144 #define PathRemoveBackslash WINELIB_NAME_AW(PathRemoveBackslash) 145 146 LPSTR WINAPI PathFindFileNameA(LPCSTR path); 147 LPWSTR WINAPI PathFindFileNameW(LPCWSTR path); 148 #define PathFindFileName WINELIB_NAME_AW(PathFindFileName) 149 LPVOID WINAPI PathFindFileNameAW(LPCVOID path); 146 150 147 151 BOOL WINAPI PathMatchSpecA(LPCSTR x, LPCSTR y);
Note:
See TracChangeset
for help on using the changeset viewer.