Registry entries for shell folders
[reactos.git] / reactos / include / wine / objbase.h
1 /*
2 * Copyright (C) 1998-1999 François Gouget
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #define WINOLEAPI STDAPI
20 #define WINOLEAPI_(type) STDAPI_(type)
21
22 #ifdef DBG
23 #undef DBG
24 #define DBG 1
25 #endif
26
27 #include_next <objbase.h>
28
29 #ifndef _OBJBASE_H_
30 #define _OBJBASE_H_
31
32 #define interface struct
33
34 /*****************************************************************************
35 * Storage API
36 */
37 #define STGM_NOSNAPSHOT 0x00200000
38
39 HRESULT WINAPI CoGetPSClsid(REFIID riid,CLSID *pclsid);
40
41 #endif /* _OBJBASE_H_ */