source: trunk/src/shell32/shellstub.cpp@ 10259

Last change on this file since 10259 was 10259, checked in by sandervl, 22 years ago

Added stubs for SHGetNewLinkInfoA/W ; Add support for Unicode adding of files to 'recent document'

File size: 2.4 KB
Line 
1/* $Id: shellstub.cpp,v 1.6 2003-10-02 10:39:22 sandervl Exp $ */
2
3/*
4 * Win32 SHELL32 for OS/2
5 *
6 * Project Odin Software License can be found in LICENSE.TXT
7 */
8
9
10/*****************************************************************************
11 * Includes *
12 *****************************************************************************/
13
14#include <odin.h>
15#include <odinwrap.h>
16#include <os2sel.h>
17
18#include <string.h>
19#include <ctype.h>
20#include <wctype.h>
21#define HAVE_WCTYPE_H
22#include <odin.h>
23
24#define ICOM_CINTERFACE 1
25#define CINTERFACE 1
26
27#include "debugtools.h"
28#include "winnls.h"
29#include "winversion.h"
30#include "winreg.h"
31#include "crtdll.h"
32
33#include "shlobj.h"
34#include "shell32_main.h"
35
36#include <heapstring.h>
37#include <misc.h>
38
39
40DWORD WIN32API SHCreateStdEnumFmtEtc(DWORD x1, DWORD x2, DWORD x3)
41{
42 dprintf(("STUB!"));
43 return 0;
44}
45
46DWORD WIN32API SHFindFiles( DWORD x1, DWORD x2)
47{
48 dprintf(("STUB!"));
49 return 0;
50}
51
52DWORD WIN32API SHFindComputer(DWORD x1, DWORD x2)
53{
54 dprintf(("STUB!"));
55 return 0;
56}
57
58DWORD WIN32API DAD_AutoScroll(DWORD x1, DWORD x2, DWORD x3)
59{
60 dprintf(("STUB!"));
61 return 0;
62}
63
64DWORD WIN32API DAD_DragEnter(DWORD x1)
65{
66 dprintf(("STUB!"));
67 return 0;
68}
69
70DWORD WIN32API DAD_DragEnterEx(DWORD x1, DWORD x2, DWORD x3)
71{
72 dprintf(("STUB!"));
73 return 0;
74}
75
76DWORD WIN32API DAD_DragLeave()
77{
78 dprintf(("STUB!"));
79 return 0;
80}
81
82DWORD WIN32API DAD_DragMove(DWORD x1, DWORD x2)
83{
84 dprintf(("STUB!"));
85 return 0;
86}
87
88DWORD WIN32API Desktop_UpdateBriefcaseOnEvent(DWORD x1)
89{
90 dprintf(("STUB!"));
91 return 0;
92}
93
94DWORD WIN32API InvalidateDriveType(DWORD x1)
95{
96 dprintf(("STUB!"));
97 return 0;
98}
99
100
101DWORD WIN32API SHGlobalDefect(DWORD x1)
102{
103 dprintf(("STUB!"));
104 return 0;
105}
106
107DWORD WIN32API SHHandleDiskFull(DWORD x1, DWORD x2)
108{
109 dprintf(("STUB!"));
110 return 0;
111}
112
113BOOL WIN32API SHGetNewLinkInfoA(LPCTSTR pszLinkTo, LPCTSTR pszDir,
114 LPTSTR pszName, BOOL *pfMustCopy,
115 UINT uFlags)
116{
117 dprintf(("NOT IMPLEMENTED: SHGetNewLinkInfoA %s %s %s %x %x", pszLinkTo, pszDir, pszName, pfMustCopy, uFlags));
118 return FALSE;
119}
120
121BOOL WIN32API SHGetNewLinkInfoW(LPCWSTR pszLinkTo, LPCWSTR pszDir,
122 LPWSTR pszName, BOOL *pfMustCopy,
123 UINT uFlags)
124{
125 dprintf(("NOT IMPLEMENTED: SHGetNewLinkInfoA %ls %ls %ls %x %x", pszLinkTo, pszDir, pszName, pfMustCopy, uFlags));
126 return FALSE;
127}
Note: See TracBrowser for help on using the repository browser.