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

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

Wine resync

File size: 1.5 KB
Line 
1/* $Id: shlstub.cpp,v 1.3 2002-02-06 20:18:28 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
51ODINFUNCTION2(LPSTR, StrFromTimeIntervalA,
52 LPVOID, lp1,
53 LPVOID, lp2)
54{
55 dprintf(("not yet implemented"));
56
57 return NULL;
58}
59
60
61/*****************************************************************************
62 * Name : StrFromTimeIntervalW
63 * Purpose :
64 * Parameters:
65 * Variables :
66 * Result :
67 * Remark :
68 * Status : UNTESTED
69 *
70 * Author :
71 *****************************************************************************/
72
73ODINFUNCTION2(LPWSTR, StrFromTimeIntervalW,
74 LPVOID, lp1,
75 LPVOID, lp2)
76{
77 dprintf(("not yet implemented"));
78
79 return NULL;
80}
Note: See TracBrowser for help on using the repository browser.