Commit 3969c56e authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

scrrun: Remove DECLSPEC_HIDDEN usage.

parent 30c67775
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
#ifndef _SCRRUN_PRIVATE_H_ #ifndef _SCRRUN_PRIVATE_H_
#define _SCRRUN_PRIVATE_H_ #define _SCRRUN_PRIVATE_H_
extern HRESULT WINAPI FileSystem_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; extern HRESULT WINAPI FileSystem_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
extern HRESULT WINAPI Dictionary_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; extern HRESULT WINAPI Dictionary_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
typedef enum tid_t typedef enum tid_t
{ {
...@@ -36,7 +36,7 @@ typedef enum tid_t ...@@ -36,7 +36,7 @@ typedef enum tid_t
LAST_tid LAST_tid
} tid_t; } tid_t;
HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo) DECLSPEC_HIDDEN; HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo);
struct provideclassinfo { struct provideclassinfo {
IProvideClassInfo IProvideClassInfo_iface; IProvideClassInfo IProvideClassInfo_iface;
...@@ -44,6 +44,6 @@ struct provideclassinfo { ...@@ -44,6 +44,6 @@ struct provideclassinfo {
const GUID *guid; const GUID *guid;
}; };
extern void init_classinfo(const GUID *guid, IUnknown *outer, struct provideclassinfo *classinfo) DECLSPEC_HIDDEN; extern void init_classinfo(const GUID *guid, IUnknown *outer, struct provideclassinfo *classinfo);
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment