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