Changeset 429
- Timestamp:
- Aug 6, 1999, 1:19:56 AM (26 years ago)
- Location:
- trunk/src/shell32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/shell32/shell32.def ¶
r421 r429 1 ; $Id: shell32.def,v 1.1 2 1999-08-05 17:18:09phaller Exp $1 ; $Id: shell32.def,v 1.13 1999-08-05 23:19:55 phaller Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 280 280 ; SheChangeDirExW = _SheChangeDirExW@? @272 281 281 SheChangeDirW = _SheChangeDirW@4 @273 282 ; SheConvertPathW = _SheConvertPathW@?@274282 SheConvertPathW = _SheConvertPathW@8 @274 283 283 ; SheFullPathA = _SheFullPathA@? @275 284 284 ; SheFullPathW = _SheFullPathW@? @276 … … 291 291 ; SheRemoveQuotesW = _SheRemoveQuotesW@? @283 292 292 ; SheSetCurDrive = _SheSetCurDrive@? @284 293 ; SheShortenPathA = _SheShortenPathA@?@285294 ; SheShortenPathW = _SheShortenPathW@?@286293 SheShortenPathA = _SheShortenPathA@8 @285 294 SheShortenPathW = _SheShortenPathW@8 @286 295 295 ShellAboutA = _ShellAboutA@16 @287 296 296 ShellAboutW = _ShellAboutW@16 @288 … … 326 326 ; StrRChrIA = _StrRChrIA@? @318 327 327 ; StrRChrIW = _StrRChrIW@? @319 328 ; StrRChrW = _StrRChrW@?@320328 StrRChrW = _StrRChrW@12 @320 329 329 ; StrRStrA = _StrRStrA@? @321 330 330 ; StrRStrIA = _StrRStrIA@? @322 -
TabularUnified trunk/src/shell32/unknown.cpp ¶
r421 r429 1 /* $Id: unknown.cpp,v 1. 5 1999-08-05 17:18:09phaller Exp $ */1 /* $Id: unknown.cpp,v 1.6 1999-08-05 23:19:56 phaller Exp $ */ 2 2 3 3 /* … … 201 201 DWORD x3) 202 202 { 203 dprintf(("SHELL32: RestartDialog(%08xh,%08xh z) not implemented.\n",203 dprintf(("SHELL32: RestartDialog(%08xh,%08xh,%08xh) not implemented.\n", 204 204 x1, 205 205 x2, … … 208 208 return (0); 209 209 } 210 211 212 /***************************************************************************** 213 * Name : DWORD SheConvertPathW 214 * Purpose : 215 * Parameters: unknown, probably wrong 216 * Variables : 217 * Result : 218 * Remark : SHELL32.275 219 * Status : UNTESTED STUB UNKNOWN 220 * 221 * Author : Patrick Haller [Tue, 1998/06/15 03:00] 222 *****************************************************************************/ 223 224 DWORD WIN32API SheConvertPathW(DWORD x1, 225 DWORD x2) 226 { 227 dprintf(("SHELL32: SheConvertPathW(%08xh,%08xh) not implemented.\n", 228 x1, 229 x2)); 230 231 return (0); 232 } 233 234 235 /***************************************************************************** 236 * Name : DWORD SheShortenPathW 237 * Purpose : 238 * Parameters: unknown, probably wrong 239 * Variables : 240 * Result : 241 * Remark : SHELL32.287 242 * Status : UNTESTED STUB UNKNOWN 243 * 244 * Author : Patrick Haller [Tue, 1998/06/15 03:00] 245 *****************************************************************************/ 246 247 DWORD WIN32API SheShortenPathW(DWORD x1, 248 DWORD x2) 249 { 250 dprintf(("SHELL32: SheShortenPathW(%08xh,%08xh) not implemented.\n", 251 x1, 252 x2)); 253 254 return (0); 255 } 256 257 258 /***************************************************************************** 259 * Name : DWORD SheShortenPathA 260 * Purpose : 261 * Parameters: unknown, probably wrong 262 * Variables : 263 * Result : 264 * Remark : SHELL32.286 265 * Status : UNTESTED STUB UNKNOWN 266 * 267 * Author : Patrick Haller [Tue, 1998/06/15 03:00] 268 *****************************************************************************/ 269 270 DWORD WIN32API SheShortenPathA(DWORD x1, 271 DWORD x2) 272 { 273 dprintf(("SHELL32: SheShortenPathA(%08xh,%08xh) not implemented.\n", 274 x1, 275 x2)); 276 277 return (0); 278 }
Note:
See TracChangeset
for help on using the changeset viewer.