mirror of https://github.com/tongzx/nt5src
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
25 lines
918 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: apinot.hxx
|
|
//
|
|
// Contents: Function header for thunks which are not direct APIs
|
|
//
|
|
// History: 11-Mar-94 BobDay Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __APINOT_HXX__
|
|
#define __APINOT_HXX__
|
|
|
|
STDAPI_(DWORD) OleRegGetUserTypeNot(REFCLSID clsid,DWORD dwFormOfType,LPOLESTR *pszUserType);
|
|
STDAPI_(DWORD) CoInitializeNot( LPMALLOC lpMalloc );
|
|
STDAPI_(DWORD) OleInitializeNot( LPMALLOC lpMalloc );
|
|
STDAPI_(DWORD) CoRegisterClassObjectNot( REFCLSID refclsid, LPUNKNOWN punk,
|
|
DWORD dwClsContext, DWORD flags,
|
|
LPDWORD lpdwreg );
|
|
STDAPI CoRevokeClassObjectNot( DWORD dwKey );
|
|
|
|
#endif // #ifndef __APINOT_HXX__
|