Line | |
---|
1 | /* $Id: shlstub.cpp,v 1.2 2001-08-30 19:19:58 phaller Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Win32 stub shlwapi APIs for OS/2
|
---|
5 | *
|
---|
6 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
7 | *
|
---|
8 | */
|
---|
9 |
|
---|
10 |
|
---|
11 | #include <odin.h>
|
---|
12 | #include <odinwrap.h>
|
---|
13 | #include <os2sel.h>
|
---|
14 |
|
---|
15 | #include <string.h>
|
---|
16 | #include <ctype.h>
|
---|
17 | #include <wctype.h>
|
---|
18 | #define HAVE_WCTYPE_H
|
---|
19 | #include <odin.h>
|
---|
20 |
|
---|
21 | #define ICOM_CINTERFACE 1
|
---|
22 | #define CINTERFACE 1
|
---|
23 |
|
---|
24 | #include "debugtools.h"
|
---|
25 | #include "winnls.h"
|
---|
26 | #include "winversion.h"
|
---|
27 | #include "winreg.h"
|
---|
28 | #include "crtdll.h"
|
---|
29 |
|
---|
30 | #include <heapstring.h>
|
---|
31 | #include <misc.h>
|
---|
32 | #include <win\shell.h>
|
---|
33 | #include <win\winerror.h>
|
---|
34 |
|
---|
35 |
|
---|
36 | ODINDEBUGCHANNEL(SHLWAPI-SHLSTUB)
|
---|
37 |
|
---|
38 | #include "shlwapi.h"
|
---|
39 |
|
---|
40 |
|
---|
41 | /*****************************************************************************
|
---|
42 | * Name : StrFromTimeIntervalA
|
---|
43 | * Purpose :
|
---|
44 | * Parameters:
|
---|
45 | * Variables :
|
---|
46 | * Result :
|
---|
47 | * Remark :
|
---|
48 | * Status : UNTESTED
|
---|
49 | *
|
---|
50 | * Author :
|
---|
51 | *****************************************************************************/
|
---|
52 |
|
---|
53 | ODINFUNCTION2(LPSTR, StrFromTimeIntervalA,
|
---|
54 | LPVOID, lp1,
|
---|
55 | LPVOID, lp2)
|
---|
56 | {
|
---|
57 | dprintf(("not yet implemented"));
|
---|
58 |
|
---|
59 | return NULL;
|
---|
60 | }
|
---|
61 |
|
---|
62 |
|
---|
63 | /*****************************************************************************
|
---|
64 | * Name : StrFromTimeIntervalW
|
---|
65 | * Purpose :
|
---|
66 | * Parameters:
|
---|
67 | * Variables :
|
---|
68 | * Result :
|
---|
69 | * Remark :
|
---|
70 | * Status : UNTESTED
|
---|
71 | *
|
---|
72 | * Author :
|
---|
73 | *****************************************************************************/
|
---|
74 |
|
---|
75 | ODINFUNCTION2(LPWSTR, StrFromTimeIntervalW,
|
---|
76 | LPVOID, lp1,
|
---|
77 | LPVOID, lp2)
|
---|
78 | {
|
---|
79 | dprintf(("not yet implemented"));
|
---|
80 |
|
---|
81 | return NULL;
|
---|
82 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.