Changeset 1214 for trunk/src/shell32/unknown.cpp
- Timestamp:
- Oct 9, 1999, 1:13:46 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/unknown.cpp
r429 r1214 1 /* $Id: unknown.cpp,v 1. 6 1999-08-05 23:19:56 phallerExp $ */1 /* $Id: unknown.cpp,v 1.7 1999-10-09 11:13:25 sandervl Exp $ */ 2 2 3 3 /* … … 11 11 *****************************************************************************/ 12 12 13 #include <odin.h> 14 #include <odinwrap.h> 13 15 #include <os2win.h> 14 16 #include <shellapi.h> 15 17 #include <winreg.h> 16 #include "shell32.h" 17 18 //#include "shell32.h" 19 20 21 ODINDEBUGCHANNEL(SHELL32-UNKNOWN) 18 22 19 23 /***************************************************************************** … … 47 51 *****************************************************************************/ 48 52 49 HINSTANCE WIN32API RealShellExecuteA(HWND hwnd, 50 LPCTSTR lpOperation, 51 LPCTSTR lpFile, 52 LPCTSTR lpParameters, 53 LPCTSTR lpDirectory, 54 INT nShowCmd) 55 { 56 dprintf (("SHELL32: RealShellExecuteA(%08xh,%s,%s,%s,%s,%08xh) not implemented.\n", 57 hwnd, 58 lpOperation, 59 lpFile, 60 lpParameters, 61 lpDirectory, 62 nShowCmd)); 53 ODINFUNCTION6(HINSTANCE, RealShellExecuteA, 54 HWND, hwnd, 55 LPCTSTR, lpOperation, 56 LPCTSTR, lpFile, 57 LPCTSTR, lpParameters, 58 LPCTSTR, lpDirectory, 59 INT, nShowCmd) 60 { 61 dprintf (("SHELL32: RealShellExecuteA not implemented.\n")); 63 62 64 63 return(0); //out of memory … … 83 82 *****************************************************************************/ 84 83 85 HINSTANCE WIN32API RealShellExecuteW(HWND hwnd, 86 LPCWSTR lpOperation, 87 LPCWSTR lpFile, 88 LPCWSTR lpParameters, 89 LPCWSTR lpDirectory, 90 INT nShowCmd) 84 ODINFUNCTION6(HINSTANCE, RealShellExecuteW, 85 HWND, hwnd, 86 LPCWSTR, lpOperation, 87 LPCWSTR, lpFile, 88 LPCWSTR, lpParameters, 89 LPCWSTR, lpDirectory, 90 INT, nShowCmd) 91 91 { 92 92 HINSTANCE hInstance; … … 132 132 *****************************************************************************/ 133 133 134 BOOL WIN32API RealShellExecuteExA(LPSHELLEXECUTEINFOA lpExecInfo) 135 { 136 dprintf(("SHELL32: RealShellExecuteExA (%08xh) not implemented.\n", 137 lpExecInfo));134 ODINFUNCTION1(BOOL, RealShellExecuteExA, 135 LPSHELLEXECUTEINFOA, lpExecInfo) 136 { 137 dprintf(("SHELL32: RealShellExecuteExA not implemented.\n")); 138 138 139 139 return (0); … … 153 153 *****************************************************************************/ 154 154 155 BOOL WIN32API RealShellExecuteExW(LPSHELLEXECUTEINFOW lpExecInfo) 156 { 157 dprintf(("SHELL32: RealShellExecuteExW (%08xh) not implemented.\n", 158 lpExecInfo));155 ODINFUNCTION1(BOOL, RealShellExecuteExW, 156 LPSHELLEXECUTEINFOW, lpExecInfo) 157 { 158 dprintf(("SHELL32: RealShellExecuteExW not implemented.\n")); 159 159 160 160 return (0); … … 174 174 *****************************************************************************/ 175 175 176 DWORD WIN32API RegenerateUserEnvironment(DWORD x1, 177 DWORD x2) 178 { 179 dprintf(("SHELL32: RegenerateUserEnvironment(%08xh,%08xhz) not implemented.\n", 180 x1, 181 x2)); 176 ODINFUNCTION2(DWORD, RegenerateUserEnvironment, 177 DWORD, x1, 178 DWORD, x2) 179 { 180 dprintf(("SHELL32: RegenerateUserEnvironment not implemented.\n")); 182 181 183 182 return (0); … … 197 196 *****************************************************************************/ 198 197 199 DWORD WIN32API RestartDialog(DWORD x1, 200 DWORD x2, 201 DWORD x3) 202 { 203 dprintf(("SHELL32: RestartDialog(%08xh,%08xh,%08xh) not implemented.\n", 204 x1, 205 x2, 206 x3)); 198 ODINFUNCTION3(DWORD, RestartDialog, 199 DWORD, x1, 200 DWORD, x2, 201 DWORD, x3) 202 { 203 dprintf(("SHELL32: RestartDialog not implemented.\n")); 207 204 208 205 return (0); … … 222 219 *****************************************************************************/ 223 220 224 DWORD WIN32API SheConvertPathW(DWORD x1, 225 DWORD x2) 226 { 227 dprintf(("SHELL32: SheConvertPathW(%08xh,%08xh) not implemented.\n", 228 x1, 229 x2)); 221 ODINFUNCTION2(DWORD, SheConvertPathW, 222 DWORD, x1, 223 DWORD, x2) 224 { 225 dprintf(("SHELL32: SheConvertPathW not implemented.\n")); 230 226 231 227 return (0); … … 245 241 *****************************************************************************/ 246 242 247 DWORD WIN32API SheShortenPathW(DWORD x1, 248 DWORD x2) 249 { 250 dprintf(("SHELL32: SheShortenPathW(%08xh,%08xh) not implemented.\n", 251 x1, 252 x2)); 243 ODINFUNCTION2(DWORD, SheShortenPathW, 244 DWORD, x1, 245 DWORD, x2) 246 { 247 dprintf(("SHELL32: SheShortenPathW not implemented.\n")); 253 248 254 249 return (0); … … 268 263 *****************************************************************************/ 269 264 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 } 265 ODINFUNCTION2(DWORD, SheShortenPathA, 266 DWORD, x1, 267 DWORD, x2) 268 { 269 dprintf(("SHELL32: SheShortenPathA not implemented.\n")); 270 271 return (0); 272 } 273
Note:
See TracChangeset
for help on using the changeset viewer.