Leaked source code of windows server 2003
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

  1. #ifndef _DLDECL_H_
  2. #define _DLDECL_H_
  3. // Delay load declarations
  4. // The following are defined to get the DECLSPEC_IMPORT stuff right.
  5. // Since we have identically-named local functions that thunk to the
  6. // real function, we need to correct the dll linkage.
  7. #ifdef DL_OLEAUT32
  8. #define _OLEAUT32_
  9. #endif
  10. #ifdef DL_OLE32
  11. #define _OLE32_
  12. #endif
  13. #endif // _DLDECL_H_