Ignore:
Timestamp:
Oct 7, 1999, 12:34:48 PM (26 years ago)
Author:
phaller
Message:

Fix: debug info

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 sandervl Exp $ */
     1/* $Id: she.cpp,v 1.3 1999-10-07 10:34:47 phaller Exp $ */
    22
    33/*
     
    1111 * Includes                                                                  *
    1212 *****************************************************************************/
     13
     14#include <odin.h>
     15#include <odinwrap.h>
    1316
    1417#include <os2win.h>
     
    3437 *****************************************************************************/
    3538
     39ODINDEBUGCHANNEL(SHELL32-SHE)
     40
    3641
    3742/*****************************************************************************
     
    4752 *****************************************************************************/
    4853
    49 HRESULT WIN32API SheSetCurDrive(DWORD x1)
     54ODINFUNCTION1(HRESULT, SheSetCurDrive,
     55              DWORD, x1)
    5056{
    51   dprintf(("SHELL32: SheSetCurDrive(%08xh) not implemented.\n",
    52            x1));
     57  dprintf(("SHELL32: SheSetCurDrive not implemented.\n"));
    5358
    5459  return 0;
    5560}
     61
    5662
    5763/*****************************************************************************
     
    6773 *****************************************************************************/
    6874
    69 void WIN32API SheRemoveQuotesA(VOID)
     75ODINFUNCTION1(HRESULT, SheRemoveQuotesA,
     76              LPCSTR,  lpszString)
    7077{
    71   dprintf(("SHELL32: undoc SheRemoveQuotesA\n"));
     78  dprintf(("SHELL32: SheRemoveQuotesA\n not implemented"));
     79
     80  return 0;
    7281}
     82
    7383
    7484/*****************************************************************************
     
    8494 *****************************************************************************/
    8595
    86 void WIN32API SheRemoveQuotesW(VOID)
     96ODINFUNCTION1(HRESULT, SheRemoveQuotesW,
     97              LPCWSTR, lpszString)
    8798{
    88   dprintf(("SHELL32: undoc SheRemoveQuotesW\n"));
     99  dprintf(("SHELL32: SheRemoveQuotesW\n not implemented"));
     100
     101  return 0;
    89102}
     103
Note: See TracChangeset for help on using the changeset viewer.