|
Last change
on this file since 21787 was 21494, checked in by dmik, 15 years ago |
|
Fixed broken build after r21492 by sorting out a huuuuge wagon of duplicates, wrong include order and other dirty mess.
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 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 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.