1 | /* $Id: shlstub.cpp,v 1.4 2002-02-13 16:15:07 sandervl 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 CINTERFACE
|
---|
22 |
|
---|
23 | #include "debugtools.h"
|
---|
24 | #include "winnls.h"
|
---|
25 | #include "winversion.h"
|
---|
26 | #include "winreg.h"
|
---|
27 | #include "crtdll.h"
|
---|
28 |
|
---|
29 | #include <heapstring.h>
|
---|
30 | #include <misc.h>
|
---|
31 | #include <win/shell.h>
|
---|
32 | #include <win/winerror.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | ODINDEBUGCHANNEL(SHLWAPI-SHLSTUB)
|
---|
36 |
|
---|
37 |
|
---|
38 | /*****************************************************************************
|
---|
39 | * Name : StrFromTimeIntervalA
|
---|
40 | * Purpose :
|
---|
41 | * Parameters:
|
---|
42 | * Variables :
|
---|
43 | * Result :
|
---|
44 | * Remark :
|
---|
45 | * Status : UNTESTED
|
---|
46 | *
|
---|
47 | * Author :
|
---|
48 | *****************************************************************************/
|
---|
49 |
|
---|
50 | LPSTR WIN32API StrFromTimeIntervalA(LPVOID lp1, LPVOID lp2, LPVOID lp3, LPVOID lp4)
|
---|
51 | {
|
---|
52 | dprintf(("not yet implemented"));
|
---|
53 |
|
---|
54 | return NULL;
|
---|
55 | }
|
---|
56 |
|
---|
57 |
|
---|
58 | /*****************************************************************************
|
---|
59 | * Name : StrFromTimeIntervalW
|
---|
60 | * Purpose :
|
---|
61 | * Parameters:
|
---|
62 | * Variables :
|
---|
63 | * Result :
|
---|
64 | * Remark :
|
---|
65 | * Status : UNTESTED
|
---|
66 | *
|
---|
67 | * Author :
|
---|
68 | *****************************************************************************/
|
---|
69 |
|
---|
70 | LPWSTR WIN32API StrFromTimeIntervalW(LPVOID lp1, LPVOID lp2, LPVOID lp3, LPVOID lp4)
|
---|
71 | {
|
---|
72 | dprintf(("not yet implemented"));
|
---|
73 |
|
---|
74 | return NULL;
|
---|
75 | }
|
---|
76 |
|
---|
77 | /*****************************************************************************
|
---|
78 | * Name : AssocQueryStringA
|
---|
79 | * Purpose : Searches for and retreives a file or protocol association-related
|
---|
80 | * string from the registry.
|
---|
81 | */
|
---|
82 | HRESULT WIN32API AssocQueryStringA( DWORD /*ASSOCF*/ flags, DWORD /*ASSOCSTR*/ str,
|
---|
83 | LPCSTR pszAssoc, LPCSTR pszExtra,
|
---|
84 | LPSTR pszOut, DWORD *pcchOut )
|
---|
85 | {
|
---|
86 | dprintf(("SHLWAPI: AssocQueryStringA() not implemented\n"));
|
---|
87 | return (E_NOTIMPL);
|
---|
88 | }
|
---|
89 |
|
---|
90 | /*****************************************************************************
|
---|
91 | * Name : AssocQueryStringW
|
---|
92 | * Purpose : Searches for and retreives a file or protocol association-related
|
---|
93 | * string from the registry.
|
---|
94 | */
|
---|
95 | HRESULT WIN32API AssocQueryStringW( DWORD /*ASSOCF*/ flags, DWORD /*ASSOCSTR*/ str,
|
---|
96 | LPCWSTR pszAssoc, LPCWSTR pszExtra,
|
---|
97 | LPWSTR pszOut, DWORD *pcchOut )
|
---|
98 | {
|
---|
99 | dprintf(("SHLWAPI: AssocQueryStringW() not implemented\n"));
|
---|
100 | return (E_NOTIMPL);
|
---|
101 | }
|
---|