source: trunk/src/shlwapi/shlstub.cpp@ 8706

Last change on this file since 8706 was 7900, checked in by sandervl, 24 years ago

added extended logging

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 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
36ODINDEBUGCHANNEL(SHLWAPI-SHLSTUB)
37
38
39/*****************************************************************************
40 * Name : StrFromTimeIntervalA
41 * Purpose :
42 * Parameters:
43 * Variables :
44 * Result :
45 * Remark :
46 * Status : UNTESTED
47 *
48 * Author :
49 *****************************************************************************/
50
51LPSTR WIN32API StrFromTimeIntervalA(LPVOID lp1, LPVOID lp2, LPVOID lp3, LPVOID lp4)
52{
53 dprintf(("not yet implemented"));
54
55 return NULL;
56}
57
58
59/*****************************************************************************
60 * Name : StrFromTimeIntervalW
61 * Purpose :
62 * Parameters:
63 * Variables :
64 * Result :
65 * Remark :
66 * Status : UNTESTED
67 *
68 * Author :
69 *****************************************************************************/
70
71LPWSTR WIN32API StrFromTimeIntervalW(LPVOID lp1, LPVOID lp2, LPVOID lp3, LPVOID lp4)
72{
73 dprintf(("not yet implemented"));
74
75 return NULL;
76}
Note: See TracBrowser for help on using the repository browser.