Changeset 1214 for trunk/src/shell32/she.cpp
- Timestamp:
- Oct 9, 1999, 1:13:46 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/she.cpp
r972 r1214 1 /* $Id: she.cpp,v 1. 6 1999-09-18 15:57:52sandervl Exp $ */1 /* $Id: she.cpp,v 1.7 1999-10-09 11:13:20 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 *****************************************************************************/ 13 13 14 #include <odin.h> 15 #include <odinwrap.h> 16 14 17 #include <os2win.h> 15 18 #include <shellapi.h> 16 19 #include <winreg.h> 17 #include "shell32.h"18 19 20 #include <stdarg.h> 20 21 //#include <builtin.h> … … 23 24 #include <string.h> 24 25 26 27 #define ICOM_CINTERFACE 1 28 #include "shell32_main.h" 29 25 30 #include <misc.h> 31 //#include <nameid.h> 26 32 #include <unicode.h> 27 33 … … 30 36 * Types & Defines * 31 37 *****************************************************************************/ 38 39 ODINDEBUGCHANNEL(SHELL32-SHE) 32 40 33 41 … … 44 52 *****************************************************************************/ 45 53 46 HRESULT WIN32API SheSetCurDrive(DWORD x1) 54 ODINFUNCTION1(HRESULT, SheSetCurDrive, 55 DWORD, x1) 47 56 { 48 dprintf(("SHELL32: SheSetCurDrive(%08xh) not implemented.\n", 49 x1)); 57 dprintf(("SHELL32: SheSetCurDrive not implemented.\n")); 50 58 51 59 return 0; 52 60 } 61 53 62 54 63 /***************************************************************************** … … 64 73 *****************************************************************************/ 65 74 66 void WIN32API SheRemoveQuotesA(VOID) 75 ODINFUNCTION1(HRESULT, SheRemoveQuotesA, 76 LPCSTR, lpszString) 67 77 { 68 dprintf(("SHELL32: undoc SheRemoveQuotesA\n")); 78 dprintf(("SHELL32: SheRemoveQuotesA\n not implemented")); 79 80 return 0; 69 81 } 82 70 83 71 84 /***************************************************************************** … … 81 94 *****************************************************************************/ 82 95 83 void WIN32API SheRemoveQuotesW(VOID) 96 ODINFUNCTION1(HRESULT, SheRemoveQuotesW, 97 LPCWSTR, lpszString) 84 98 { 85 dprintf(("SHELL32: undoc SheRemoveQuotesW\n")); 99 dprintf(("SHELL32: SheRemoveQuotesW\n not implemented")); 100 101 return 0; 86 102 } 103
Note:
See TracChangeset
for help on using the changeset viewer.