xref: /aoo41x/main/sal/inc/systools/win32/shell9x.h (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #pragma once
29 
30 #ifndef _SHELL9X_H_
31 #define _SHELL9X_H_
32 
33 #ifndef _WINDOWS_
34 #include <windows.h>
35 #endif
36 
37 #ifndef _SHLOBJ_H_
38 #include <shlobj.h>
39 #endif
40 
41 #include <shellapi.h>
42 
43 #ifdef __cplusplus
44 extern "C"{
45 #endif
46 
47 //------------------------------------------------------------------------
48 // undefine the macros defined in the shlobj.h file in order to avoid
49 // warnings because of multiple defines
50 //------------------------------------------------------------------------
51 
52 #ifdef CommandLineToArgvW
53 #undef CommandLineToArgvW
54 #endif
55 
56 #ifdef SHBrowseForFolderW
57 #undef SHBrowseForFolderW
58 #endif
59 
60 #ifdef SHGetPathFromIDListW
61 #undef SHGetPathFromIDListW
62 #endif
63 
64 #ifdef ShellExecuteExW
65 #undef ShellExecuteExW
66 #endif
67 
68 //------------------------------------------------------------------------
69 // set the compiler directives for the function pointer we declare below
70 // if we build sal or sal will be used as static library we define extern
71 // else sal exports the function pointers from a dll and we use __declspec
72 //------------------------------------------------------------------------
73 
74 #define SHELL9X_API extern
75 
76 //------------------------------------------------------------------------
77 // declare function pointers to the appropriate shell functions
78 //------------------------------------------------------------------------
79 
80 SHELL9X_API LPWSTR *     ( WINAPI * lpfnCommandLineToArgvW ) ( LPCWSTR lpCmdLine, int *pNumArgs );
81 SHELL9X_API LPITEMIDLIST ( WINAPI * lpfnSHBrowseForFolderW ) ( LPBROWSEINFOW lpbi );
82 SHELL9X_API BOOL         ( WINAPI * lpfnSHGetPathFromIDListW ) ( LPCITEMIDLIST pidl, LPWSTR pszPath );
83 
84 SHELL9X_API BOOL ( WINAPI * lpfnShellExecuteExW ) ( LPSHELLEXECUTEINFOW lpExecInfo );
85 
86 //------------------------------------------------------------------------
87 // redefine the above undefined macros so that the preprocessor replaces
88 // all occurrences of this macros with our function pointer
89 //------------------------------------------------------------------------
90 
91 #define CommandLineToArgvW   lpfnCommandLineToArgvW
92 #define SHBrowseForFolderW   lpfnSHBrowseForFolderW
93 #define SHGetPathFromIDListW lpfnSHGetPathFromIDListW
94 
95 #define ShellExecuteExW lpfnShellExecuteExW
96 
97 #ifdef __cplusplus
98 }
99 #endif
100 
101 #endif
102