Source code of Windows XP (NT5)
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.

25 lines
918 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: apinot.hxx
  7. //
  8. // Contents: Function header for thunks which are not direct APIs
  9. //
  10. // History: 11-Mar-94 BobDay Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef __APINOT_HXX__
  14. #define __APINOT_HXX__
  15. STDAPI_(DWORD) OleRegGetUserTypeNot(REFCLSID clsid,DWORD dwFormOfType,LPOLESTR *pszUserType);
  16. STDAPI_(DWORD) CoInitializeNot( LPMALLOC lpMalloc );
  17. STDAPI_(DWORD) OleInitializeNot( LPMALLOC lpMalloc );
  18. STDAPI_(DWORD) CoRegisterClassObjectNot( REFCLSID refclsid, LPUNKNOWN punk,
  19. DWORD dwClsContext, DWORD flags,
  20. LPDWORD lpdwreg );
  21. STDAPI CoRevokeClassObjectNot( DWORD dwKey );
  22. #endif // #ifndef __APINOT_HXX__