[7904] | 1 | /* $Id: she.cpp,v 1.8 2002-02-14 12:10:09 sandervl Exp $ */
|
---|
[96] | 2 |
|
---|
[77] | 3 | /*
|
---|
| 4 | * Win32 SHELL32 for OS/2
|
---|
| 5 | * Copyright 1999 Patrick Haller
|
---|
| 6 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
| 7 | */
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | /*****************************************************************************
|
---|
| 11 | * Includes *
|
---|
| 12 | *****************************************************************************/
|
---|
| 13 |
|
---|
[1214] | 14 | #include <odin.h>
|
---|
| 15 | #include <odinwrap.h>
|
---|
| 16 |
|
---|
[77] | 17 | #include <os2win.h>
|
---|
| 18 | #include <shellapi.h>
|
---|
| 19 | #include <winreg.h>
|
---|
| 20 | #include <stdarg.h>
|
---|
| 21 | //#include <builtin.h>
|
---|
| 22 | #include <stdio.h>
|
---|
| 23 | #include <stdlib.h>
|
---|
| 24 | #include <string.h>
|
---|
| 25 |
|
---|
[1214] | 26 |
|
---|
[21494] | 27 | #define CINTERFACE
|
---|
[1214] | 28 | #include "shell32_main.h"
|
---|
| 29 |
|
---|
[77] | 30 | #include <misc.h>
|
---|
[1214] | 31 | //#include <nameid.h>
|
---|
[77] | 32 | #include <unicode.h>
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 | /*****************************************************************************
|
---|
| 36 | * Types & Defines *
|
---|
| 37 | *****************************************************************************/
|
---|
| 38 |
|
---|
[1214] | 39 | ODINDEBUGCHANNEL(SHELL32-SHE)
|
---|
[77] | 40 |
|
---|
[1214] | 41 |
|
---|
[77] | 42 | /*****************************************************************************
|
---|
[273] | 43 | * Name : HRESULT SheSetCurDrive
|
---|
[77] | 44 | * Purpose :
|
---|
[273] | 45 | * Parameters: unknown
|
---|
[77] | 46 | * Variables :
|
---|
| 47 | * Result :
|
---|
[273] | 48 | * Remark : SHELL32.285
|
---|
[77] | 49 | * Status : UNTESTED STUB
|
---|
| 50 | *
|
---|
| 51 | * Author : Patrick Haller [Tue, 1999/06/01 09:00]
|
---|
| 52 | *****************************************************************************/
|
---|
| 53 |
|
---|
[7904] | 54 | HRESULT WIN32API SheSetCurDrive(DWORD x1)
|
---|
[273] | 55 | {
|
---|
[1214] | 56 | dprintf(("SHELL32: SheSetCurDrive not implemented.\n"));
|
---|
[278] | 57 |
|
---|
| 58 | return 0;
|
---|
[273] | 59 | }
|
---|
[505] | 60 |
|
---|
[1214] | 61 |
|
---|
[505] | 62 | /*****************************************************************************
|
---|
| 63 | * Name : SheRemoveQuotesA
|
---|
| 64 | * Purpose :
|
---|
| 65 | * Parameters: ???
|
---|
| 66 | * Variables :
|
---|
| 67 | * Result :
|
---|
| 68 | * Remark : SHELL32.282 - used by progman.exe
|
---|
| 69 | * Status : UNTESTED UNKNOWN STUB
|
---|
| 70 | *
|
---|
| 71 | * Author : Christoph Bratschi [Fri, 1999/08/6 19:00]
|
---|
| 72 | *****************************************************************************/
|
---|
| 73 |
|
---|
[7904] | 74 | HRESULT WIN32API SheRemoveQuotesA(LPCSTR lpszString)
|
---|
[505] | 75 | {
|
---|
[1214] | 76 | dprintf(("SHELL32: SheRemoveQuotesA\n not implemented"));
|
---|
| 77 |
|
---|
| 78 | return 0;
|
---|
[505] | 79 | }
|
---|
| 80 |
|
---|
[1214] | 81 |
|
---|
[505] | 82 | /*****************************************************************************
|
---|
| 83 | * Name : SheRemoveQuotesW
|
---|
| 84 | * Purpose :
|
---|
| 85 | * Parameters: ???
|
---|
| 86 | * Variables :
|
---|
| 87 | * Result :
|
---|
| 88 | * Remark : SHELL32.283 - used by progman.exe
|
---|
| 89 | * Status : UNTESTED UNKNOWN STUB
|
---|
| 90 | *
|
---|
| 91 | * Author : Christoph Bratschi [Fri, 1999/08/6 19:00]
|
---|
| 92 | *****************************************************************************/
|
---|
| 93 |
|
---|
[7904] | 94 | HRESULT WIN32API SheRemoveQuotesW(LPCWSTR lpszString)
|
---|
[505] | 95 | {
|
---|
[1214] | 96 | dprintf(("SHELL32: SheRemoveQuotesW\n not implemented"));
|
---|
| 97 |
|
---|
| 98 | return 0;
|
---|
[505] | 99 | }
|
---|
[1214] | 100 |
|
---|