Changeset 1162 for trunk/src/shell32/new/she.cpp
- Timestamp:
- Oct 7, 1999, 12:34:48 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/new/she.cpp
r1129 r1162 1 /* $Id: she.cpp,v 1. 2 1999-10-04 19:11:27 sandervlExp $ */1 /* $Id: she.cpp,v 1.3 1999-10-07 10:34:47 phaller Exp $ */ 2 2 3 3 /* … … 11 11 * Includes * 12 12 *****************************************************************************/ 13 14 #include <odin.h> 15 #include <odinwrap.h> 13 16 14 17 #include <os2win.h> … … 34 37 *****************************************************************************/ 35 38 39 ODINDEBUGCHANNEL(SHELL32-SHE) 40 36 41 37 42 /***************************************************************************** … … 47 52 *****************************************************************************/ 48 53 49 HRESULT WIN32API SheSetCurDrive(DWORD x1) 54 ODINFUNCTION1(HRESULT, SheSetCurDrive, 55 DWORD, x1) 50 56 { 51 dprintf(("SHELL32: SheSetCurDrive(%08xh) not implemented.\n", 52 x1)); 57 dprintf(("SHELL32: SheSetCurDrive not implemented.\n")); 53 58 54 59 return 0; 55 60 } 61 56 62 57 63 /***************************************************************************** … … 67 73 *****************************************************************************/ 68 74 69 void WIN32API SheRemoveQuotesA(VOID) 75 ODINFUNCTION1(HRESULT, SheRemoveQuotesA, 76 LPCSTR, lpszString) 70 77 { 71 dprintf(("SHELL32: undoc SheRemoveQuotesA\n")); 78 dprintf(("SHELL32: SheRemoveQuotesA\n not implemented")); 79 80 return 0; 72 81 } 82 73 83 74 84 /***************************************************************************** … … 84 94 *****************************************************************************/ 85 95 86 void WIN32API SheRemoveQuotesW(VOID) 96 ODINFUNCTION1(HRESULT, SheRemoveQuotesW, 97 LPCWSTR, lpszString) 87 98 { 88 dprintf(("SHELL32: undoc SheRemoveQuotesW\n")); 99 dprintf(("SHELL32: SheRemoveQuotesW\n not implemented")); 100 101 return 0; 89 102 } 103
Note:
See TracChangeset
for help on using the changeset viewer.