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/she.cpp

    r972 r1214  
    1 /* $Id: she.cpp,v 1.6 1999-09-18 15:57:52 sandervl Exp $ */
     1/* $Id: she.cpp,v 1.7 1999-10-09 11:13:20 sandervl Exp $ */
    22
    33/*
     
    1212 *****************************************************************************/
    1313
     14#include <odin.h>
     15#include <odinwrap.h>
     16
    1417#include <os2win.h>
    1518#include <shellapi.h>
    1619#include <winreg.h>
    17 #include "shell32.h"
    18 
    1920#include <stdarg.h>
    2021//#include <builtin.h>
     
    2324#include <string.h>
    2425
     26
     27#define ICOM_CINTERFACE 1
     28#include "shell32_main.h"
     29
    2530#include <misc.h>
     31//#include <nameid.h>
    2632#include <unicode.h>
    2733
     
    3036 * Types & Defines                                                           *
    3137 *****************************************************************************/
     38
     39ODINDEBUGCHANNEL(SHELL32-SHE)
    3240
    3341
     
    4452 *****************************************************************************/
    4553
    46 HRESULT WIN32API SheSetCurDrive(DWORD x1)
     54ODINFUNCTION1(HRESULT, SheSetCurDrive,
     55              DWORD, x1)
    4756{
    48   dprintf(("SHELL32: SheSetCurDrive(%08xh) not implemented.\n",
    49            x1));
     57  dprintf(("SHELL32: SheSetCurDrive not implemented.\n"));
    5058
    5159  return 0;
    5260}
     61
    5362
    5463/*****************************************************************************
     
    6473 *****************************************************************************/
    6574
    66 void WIN32API SheRemoveQuotesA(VOID)
     75ODINFUNCTION1(HRESULT, SheRemoveQuotesA,
     76              LPCSTR,  lpszString)
    6777{
    68   dprintf(("SHELL32: undoc SheRemoveQuotesA\n"));
     78  dprintf(("SHELL32: SheRemoveQuotesA\n not implemented"));
     79
     80  return 0;
    6981}
     82
    7083
    7184/*****************************************************************************
     
    8194 *****************************************************************************/
    8295
    83 void WIN32API SheRemoveQuotesW(VOID)
     96ODINFUNCTION1(HRESULT, SheRemoveQuotesW,
     97              LPCWSTR, lpszString)
    8498{
    85   dprintf(("SHELL32: undoc SheRemoveQuotesW\n"));
     99  dprintf(("SHELL32: SheRemoveQuotesW\n not implemented"));
     100
     101  return 0;
    86102}
     103
Note: See TracChangeset for help on using the changeset viewer.