[7900] | 1 | /* $Id: shlstub.cpp,v 1.4 2002-02-13 16:15:07 sandervl Exp $ */
|
---|
[3562] | 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 |
|
---|
[21494] | 21 | #define CINTERFACE
|
---|
[3562] | 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>
|
---|
[21916] | 31 | #include <win/shell.h>
|
---|
| 32 | #include <win/winerror.h>
|
---|
[3562] | 33 |
|
---|
| 34 |
|
---|
| 35 | ODINDEBUGCHANNEL(SHLWAPI-SHLSTUB)
|
---|
| 36 |
|
---|
| 37 |
|
---|
[6608] | 38 | /*****************************************************************************
|
---|
| 39 | * Name : StrFromTimeIntervalA
|
---|
[21916] | 40 | * Purpose :
|
---|
[6608] | 41 | * Parameters:
|
---|
| 42 | * Variables :
|
---|
| 43 | * Result :
|
---|
[21916] | 44 | * Remark :
|
---|
[6608] | 45 | * Status : UNTESTED
|
---|
| 46 | *
|
---|
| 47 | * Author :
|
---|
| 48 | *****************************************************************************/
|
---|
| 49 |
|
---|
[7900] | 50 | LPSTR WIN32API StrFromTimeIntervalA(LPVOID lp1, LPVOID lp2, LPVOID lp3, LPVOID lp4)
|
---|
[6608] | 51 | {
|
---|
| 52 | dprintf(("not yet implemented"));
|
---|
[21916] | 53 |
|
---|
[6608] | 54 | return NULL;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 |
|
---|
| 58 | /*****************************************************************************
|
---|
| 59 | * Name : StrFromTimeIntervalW
|
---|
[21916] | 60 | * Purpose :
|
---|
[6608] | 61 | * Parameters:
|
---|
| 62 | * Variables :
|
---|
| 63 | * Result :
|
---|
[21916] | 64 | * Remark :
|
---|
[6608] | 65 | * Status : UNTESTED
|
---|
| 66 | *
|
---|
| 67 | * Author :
|
---|
| 68 | *****************************************************************************/
|
---|
| 69 |
|
---|
[7900] | 70 | LPWSTR WIN32API StrFromTimeIntervalW(LPVOID lp1, LPVOID lp2, LPVOID lp3, LPVOID lp4)
|
---|
[6608] | 71 | {
|
---|
| 72 | dprintf(("not yet implemented"));
|
---|
[21916] | 73 |
|
---|
[6608] | 74 | return NULL;
|
---|
| 75 | }
|
---|
[22034] | 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 | }
|
---|