Last change
on this file since 3832 was 3551, checked in by sandervl, 25 years ago |
removed path functions, added forwarders to shlwapi
|
File size:
1.5 KB
|
Line | |
---|
1 | /* $Id: shellpath.cpp,v 1.10 2000-05-18 14:16:04 sandervl Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Win32 SHELL32 for OS/2
|
---|
5 | *
|
---|
6 | * Copyright 1997 Marcus Meissner
|
---|
7 | * Copyright 1999 Patrick Haller (haller@zebra.fh-weingarten.de)
|
---|
8 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
9 | *
|
---|
10 | * Path Functions
|
---|
11 | *
|
---|
12 | * Many of this functions are in SHLWAPI.DLL also
|
---|
13 | *
|
---|
14 | * Corel WINE 20000324 level (without CRTDLL_* calls)
|
---|
15 | */
|
---|
16 |
|
---|
17 |
|
---|
18 | /*****************************************************************************
|
---|
19 | * Includes *
|
---|
20 | *****************************************************************************/
|
---|
21 |
|
---|
22 | #include <odin.h>
|
---|
23 | #include <odinwrap.h>
|
---|
24 | #include <os2sel.h>
|
---|
25 |
|
---|
26 | #include <string.h>
|
---|
27 | #include <ctype.h>
|
---|
28 | #include <wctype.h>
|
---|
29 | #define HAVE_WCTYPE_H
|
---|
30 | #include <odin.h>
|
---|
31 |
|
---|
32 | #define ICOM_CINTERFACE 1
|
---|
33 | #define CINTERFACE 1
|
---|
34 |
|
---|
35 | #include "debugtools.h"
|
---|
36 | #include "winnls.h"
|
---|
37 | #include "winversion.h"
|
---|
38 | #include "winreg.h"
|
---|
39 | #include "crtdll.h"
|
---|
40 |
|
---|
41 | #include "shlobj.h"
|
---|
42 | #include "shell32_main.h"
|
---|
43 |
|
---|
44 | #include <heapstring.h>
|
---|
45 | #include <misc.h>
|
---|
46 |
|
---|
47 |
|
---|
48 | ODINDEBUGCHANNEL(SHELL32-SHELLPATH)
|
---|
49 |
|
---|
50 | /*************************************************************************
|
---|
51 | * SheGetDirW [SHELL32.281]
|
---|
52 | *
|
---|
53 | */
|
---|
54 | ODINFUNCTION2(HRESULT, SheGetDirW,
|
---|
55 | LPWSTR, u,
|
---|
56 | LPWSTR, v)
|
---|
57 | { FIXME("%p %p stub\n",u,v);
|
---|
58 | return 0;
|
---|
59 | }
|
---|
60 |
|
---|
61 | /*************************************************************************
|
---|
62 | * SheChangeDirW [SHELL32.274]
|
---|
63 | *
|
---|
64 | */
|
---|
65 | ODINFUNCTION1(HRESULT, SheChangeDirW,
|
---|
66 | LPWSTR, u)
|
---|
67 | { FIXME("(%s),stub\n",debugstr_w(u));
|
---|
68 | return 0;
|
---|
69 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.