You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
19 lines
387 B
#ifndef _DLDECL_H_
|
|
#define _DLDECL_H_
|
|
|
|
// Delay load declarations
|
|
|
|
// The following are defined to get the DECLSPEC_IMPORT stuff right.
|
|
// Since we have identically-named local functions that thunk to the
|
|
// real function, we need to correct the dll linkage.
|
|
|
|
#ifdef DL_OLEAUT32
|
|
#define _OLEAUT32_
|
|
#endif
|
|
|
|
#ifdef DL_OLE32
|
|
#define _OLE32_
|
|
#endif
|
|
|
|
#endif // _DLDECL_H_
|
|
|