Ignore:
Timestamp:
Oct 9, 1999, 1:13:46 PM (26 years ago)
Author:
sandervl
Message:

Moved new shell32 to current dir

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 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.7 1999-10-09 11:13:25 sandervl Exp $ */
    22
    33/*
     
    1111 *****************************************************************************/
    1212
     13#include <odin.h>
     14#include <odinwrap.h>
    1315#include <os2win.h>
    1416#include <shellapi.h>
    1517#include <winreg.h>
    16 #include "shell32.h"
    17 
     18//#include "shell32.h"
     19
     20
     21ODINDEBUGCHANNEL(SHELL32-UNKNOWN)
    1822
    1923/*****************************************************************************
     
    4751 *****************************************************************************/
    4852
    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));
     53ODINFUNCTION6(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"));
    6362
    6463  return(0); //out of memory
     
    8382 *****************************************************************************/
    8483
    85 HINSTANCE WIN32API RealShellExecuteW(HWND    hwnd,
    86                                      LPCWSTR lpOperation,
    87                                      LPCWSTR lpFile,
    88                                      LPCWSTR lpParameters,
    89                                      LPCWSTR lpDirectory,
    90                                      INT     nShowCmd)
     84ODINFUNCTION6(HINSTANCE, RealShellExecuteW,
     85              HWND,      hwnd,
     86              LPCWSTR,   lpOperation,
     87              LPCWSTR,   lpFile,
     88              LPCWSTR,   lpParameters,
     89              LPCWSTR,   lpDirectory,
     90              INT,       nShowCmd)
    9191{
    9292  HINSTANCE hInstance;
     
    132132 *****************************************************************************/
    133133
    134 BOOL WIN32API RealShellExecuteExA(LPSHELLEXECUTEINFOA lpExecInfo)
    135 {
    136   dprintf(("SHELL32: RealShellExecuteExA (%08xh) not implemented.\n",
    137            lpExecInfo));
     134ODINFUNCTION1(BOOL,                RealShellExecuteExA,
     135              LPSHELLEXECUTEINFOA, lpExecInfo)
     136{
     137  dprintf(("SHELL32: RealShellExecuteExA not implemented.\n"));
    138138
    139139  return (0);
     
    153153 *****************************************************************************/
    154154
    155 BOOL WIN32API RealShellExecuteExW(LPSHELLEXECUTEINFOW lpExecInfo)
    156 {
    157   dprintf(("SHELL32: RealShellExecuteExW (%08xh) not implemented.\n",
    158            lpExecInfo));
     155ODINFUNCTION1(BOOL,                RealShellExecuteExW,
     156              LPSHELLEXECUTEINFOW, lpExecInfo)
     157{
     158  dprintf(("SHELL32: RealShellExecuteExW not implemented.\n"));
    159159
    160160  return (0);
     
    174174 *****************************************************************************/
    175175
    176 DWORD WIN32API RegenerateUserEnvironment(DWORD x1,
    177                                          DWORD x2)
    178 {
    179   dprintf(("SHELL32: RegenerateUserEnvironment(%08xh,%08xhz) not implemented.\n",
    180            x1,
    181            x2));
     176ODINFUNCTION2(DWORD, RegenerateUserEnvironment,
     177              DWORD, x1,
     178              DWORD, x2)
     179{
     180  dprintf(("SHELL32: RegenerateUserEnvironment not implemented.\n"));
    182181
    183182  return (0);
     
    197196 *****************************************************************************/
    198197
    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));
     198ODINFUNCTION3(DWORD, RestartDialog,
     199              DWORD, x1,
     200              DWORD, x2,
     201              DWORD, x3)
     202{
     203  dprintf(("SHELL32: RestartDialog not implemented.\n"));
    207204
    208205  return (0);
     
    222219 *****************************************************************************/
    223220
    224 DWORD WIN32API SheConvertPathW(DWORD x1,
    225                                DWORD x2)
    226 {
    227   dprintf(("SHELL32: SheConvertPathW(%08xh,%08xh) not implemented.\n",
    228            x1,
    229            x2));
     221ODINFUNCTION2(DWORD, SheConvertPathW,
     222              DWORD, x1,
     223              DWORD, x2)
     224{
     225  dprintf(("SHELL32: SheConvertPathW not implemented.\n"));
    230226
    231227  return (0);
     
    245241 *****************************************************************************/
    246242
    247 DWORD WIN32API SheShortenPathW(DWORD x1,
    248                                DWORD x2)
    249 {
    250   dprintf(("SHELL32: SheShortenPathW(%08xh,%08xh) not implemented.\n",
    251            x1,
    252            x2));
     243ODINFUNCTION2(DWORD, SheShortenPathW,
     244              DWORD, x1,
     245              DWORD, x2)
     246{
     247  dprintf(("SHELL32: SheShortenPathW not implemented.\n"));
    253248
    254249  return (0);
     
    268263 *****************************************************************************/
    269264
    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 }
     265ODINFUNCTION2(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.