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

Last change on this file since 505 was 505, checked in by phaller, 26 years ago

Add: more stubs for shell32

File size: 2.4 KB
Line 
1/* $Id: she.cpp,v 1.5 1999-08-16 10:31:28 phaller 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 <os2win.h>
15#include <shellapi.h>
16#include <winreg.h>
17#include "shell32.h"
18
19#include <stdarg.h>
20//#include <builtin.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24
25#include <misc.h>
26#include <nameid.h>
27#include <unicode.h>
28
29
30/*****************************************************************************
31 * Types & Defines *
32 *****************************************************************************/
33
34
35/*****************************************************************************
36 * Name : HRESULT SheSetCurDrive
37 * Purpose :
38 * Parameters: unknown
39 * Variables :
40 * Result :
41 * Remark : SHELL32.285
42 * Status : UNTESTED STUB
43 *
44 * Author : Patrick Haller [Tue, 1999/06/01 09:00]
45 *****************************************************************************/
46
47HRESULT WIN32API SheSetCurDrive(DWORD x1)
48{
49 dprintf(("SHELL32: SheSetCurDrive(%08xh) not implemented.\n",
50 x1));
51
52 return 0;
53}
54
55/*****************************************************************************
56 * Name : SheRemoveQuotesA
57 * Purpose :
58 * Parameters: ???
59 * Variables :
60 * Result :
61 * Remark : SHELL32.282 - used by progman.exe
62 * Status : UNTESTED UNKNOWN STUB
63 *
64 * Author : Christoph Bratschi [Fri, 1999/08/6 19:00]
65 *****************************************************************************/
66
67void WIN32API SheRemoveQuotesA(VOID)
68{
69 dprintf(("SHELL32: undoc SheRemoveQuotesA\n"));
70}
71
72/*****************************************************************************
73 * Name : SheRemoveQuotesW
74 * Purpose :
75 * Parameters: ???
76 * Variables :
77 * Result :
78 * Remark : SHELL32.283 - used by progman.exe
79 * Status : UNTESTED UNKNOWN STUB
80 *
81 * Author : Christoph Bratschi [Fri, 1999/08/6 19:00]
82 *****************************************************************************/
83
84void WIN32API SheRemoveQuotesW(VOID)
85{
86 dprintf(("SHELL32: undoc SheRemoveQuotesW\n"));
87}
Note: See TracBrowser for help on using the repository browser.