source: trunk/src/shell32/she.cpp@ 7904

Last change on this file since 7904 was 7904, checked in by sandervl, 24 years ago

extended logging added

File size: 2.5 KB
Line 
1/* $Id: she.cpp,v 1.8 2002-02-14 12:10:09 sandervl Exp $ */
2
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
14#include <odin.h>
15#include <odinwrap.h>
16
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
26
27#define ICOM_CINTERFACE 1
28#include "shell32_main.h"
29
30#include <misc.h>
31//#include <nameid.h>
32#include <unicode.h>
33
34
35/*****************************************************************************
36 * Types & Defines *
37 *****************************************************************************/
38
39ODINDEBUGCHANNEL(SHELL32-SHE)
40
41
42/*****************************************************************************
43 * Name : HRESULT SheSetCurDrive
44 * Purpose :
45 * Parameters: unknown
46 * Variables :
47 * Result :
48 * Remark : SHELL32.285
49 * Status : UNTESTED STUB
50 *
51 * Author : Patrick Haller [Tue, 1999/06/01 09:00]
52 *****************************************************************************/
53
54HRESULT WIN32API SheSetCurDrive(DWORD x1)
55{
56 dprintf(("SHELL32: SheSetCurDrive not implemented.\n"));
57
58 return 0;
59}
60
61
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
74HRESULT WIN32API SheRemoveQuotesA(LPCSTR lpszString)
75{
76 dprintf(("SHELL32: SheRemoveQuotesA\n not implemented"));
77
78 return 0;
79}
80
81
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
94HRESULT WIN32API SheRemoveQuotesW(LPCWSTR lpszString)
95{
96 dprintf(("SHELL32: SheRemoveQuotesW\n not implemented"));
97
98 return 0;
99}
100
Note: See TracBrowser for help on using the repository browser.