source: trunk/src/shell32/shellstub.cpp

Last change on this file 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: 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 CINTERFACE
25
26#include "debugtools.h"
27#include "winnls.h"
28#include "winversion.h"
29#include "winreg.h"
30#include "crtdll.h"
31
32#include "shlobj.h"
33#include "shell32_main.h"
34
35#include <heapstring.h>
36#include <misc.h>
37
38
39DWORD WIN32API SHCreateStdEnumFmtEtc(DWORD x1, DWORD x2, DWORD x3)
40{
41 dprintf(("STUB!"));
42 return 0;
43}
44
45DWORD WIN32API SHFindFiles( DWORD x1, DWORD x2)
46{
47 dprintf(("STUB!"));
48 return 0;
49}
50
51DWORD WIN32API SHFindComputer(DWORD x1, DWORD x2)
52{
53 dprintf(("STUB!"));
54 return 0;
55}
56
57DWORD WIN32API DAD_AutoScroll(DWORD x1, DWORD x2, DWORD x3)
58{
59 dprintf(("STUB!"));
60 return 0;
61}
62
63DWORD WIN32API DAD_DragEnter(DWORD x1)
64{
65 dprintf(("STUB!"));
66 return 0;
67}
68
69DWORD WIN32API DAD_DragEnterEx(DWORD x1, DWORD x2, DWORD x3)
70{
71 dprintf(("STUB!"));
72 return 0;
73}
74
75DWORD WIN32API DAD_DragLeave()
76{
77 dprintf(("STUB!"));
78 return 0;
79}
80
81DWORD WIN32API DAD_DragMove(DWORD x1, DWORD x2)
82{
83 dprintf(("STUB!"));
84 return 0;
85}
86
87DWORD WIN32API Desktop_UpdateBriefcaseOnEvent(DWORD x1)
88{
89 dprintf(("STUB!"));
90 return 0;
91}
92
93DWORD WIN32API InvalidateDriveType(DWORD x1)
94{
95 dprintf(("STUB!"));
96 return 0;
97}
98
99
100DWORD WIN32API SHGlobalDefect(DWORD x1)
101{
102 dprintf(("STUB!"));
103 return 0;
104}
105
106DWORD WIN32API SHHandleDiskFull(DWORD x1, DWORD x2)
107{
108 dprintf(("STUB!"));
109 return 0;
110}
111
112BOOL WIN32API SHGetNewLinkInfoA(LPCTSTR pszLinkTo, LPCTSTR pszDir,
113 LPTSTR pszName, BOOL *pfMustCopy,
114 UINT uFlags)
115{
116 dprintf(("NOT IMPLEMENTED: SHGetNewLinkInfoA %s %s %s %x %x", pszLinkTo, pszDir, pszName, pfMustCopy, uFlags));
117 return FALSE;
118}
119
120BOOL WIN32API SHGetNewLinkInfoW(LPCWSTR pszLinkTo, LPCWSTR pszDir,
121 LPWSTR pszName, BOOL *pfMustCopy,
122 UINT uFlags)
123{
124 dprintf(("NOT IMPLEMENTED: SHGetNewLinkInfoA %ls %ls %ls %x %x", pszLinkTo, pszDir, pszName, pfMustCopy, uFlags));
125 return FALSE;
126}
Note: See TracBrowser for help on using the repository browser.