1 | /* $Id: she.cpp,v 1.6 1999-09-18 15:57:52 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 <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 <unicode.h>
|
---|
27 |
|
---|
28 |
|
---|
29 | /*****************************************************************************
|
---|
30 | * Types & Defines *
|
---|
31 | *****************************************************************************/
|
---|
32 |
|
---|
33 |
|
---|
34 | /*****************************************************************************
|
---|
35 | * Name : HRESULT SheSetCurDrive
|
---|
36 | * Purpose :
|
---|
37 | * Parameters: unknown
|
---|
38 | * Variables :
|
---|
39 | * Result :
|
---|
40 | * Remark : SHELL32.285
|
---|
41 | * Status : UNTESTED STUB
|
---|
42 | *
|
---|
43 | * Author : Patrick Haller [Tue, 1999/06/01 09:00]
|
---|
44 | *****************************************************************************/
|
---|
45 |
|
---|
46 | HRESULT WIN32API SheSetCurDrive(DWORD x1)
|
---|
47 | {
|
---|
48 | dprintf(("SHELL32: SheSetCurDrive(%08xh) not implemented.\n",
|
---|
49 | x1));
|
---|
50 |
|
---|
51 | return 0;
|
---|
52 | }
|
---|
53 |
|
---|
54 | /*****************************************************************************
|
---|
55 | * Name : SheRemoveQuotesA
|
---|
56 | * Purpose :
|
---|
57 | * Parameters: ???
|
---|
58 | * Variables :
|
---|
59 | * Result :
|
---|
60 | * Remark : SHELL32.282 - used by progman.exe
|
---|
61 | * Status : UNTESTED UNKNOWN STUB
|
---|
62 | *
|
---|
63 | * Author : Christoph Bratschi [Fri, 1999/08/6 19:00]
|
---|
64 | *****************************************************************************/
|
---|
65 |
|
---|
66 | void WIN32API SheRemoveQuotesA(VOID)
|
---|
67 | {
|
---|
68 | dprintf(("SHELL32: undoc SheRemoveQuotesA\n"));
|
---|
69 | }
|
---|
70 |
|
---|
71 | /*****************************************************************************
|
---|
72 | * Name : SheRemoveQuotesW
|
---|
73 | * Purpose :
|
---|
74 | * Parameters: ???
|
---|
75 | * Variables :
|
---|
76 | * Result :
|
---|
77 | * Remark : SHELL32.283 - used by progman.exe
|
---|
78 | * Status : UNTESTED UNKNOWN STUB
|
---|
79 | *
|
---|
80 | * Author : Christoph Bratschi [Fri, 1999/08/6 19:00]
|
---|
81 | *****************************************************************************/
|
---|
82 |
|
---|
83 | void WIN32API SheRemoveQuotesW(VOID)
|
---|
84 | {
|
---|
85 | dprintf(("SHELL32: undoc SheRemoveQuotesW\n"));
|
---|
86 | }
|
---|