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.
30 lines
817 B
30 lines
817 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// File: oaidl.acf
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
interface IOleAutomationTypes {
|
|
// typedef [allocate(dont_free)] LPTYPEATTR;
|
|
// typedef [allocate(dont_free)] LPFUNCDESC;
|
|
// typedef [allocate(dont_free)] LPVARDESC;
|
|
}
|
|
|
|
|
|
interface ITypeInfo {
|
|
[nocode] LocalGetIDsOfNames();
|
|
[nocode] LocalInvoke();
|
|
[nocode] LocalAddressOfMember();
|
|
[nocode] LocalReleaseTypeAttr();
|
|
[nocode] LocalReleaseFuncDesc();
|
|
[nocode] LocalReleaseVarDesc();
|
|
}
|
|
|
|
interface ITypeLib {
|
|
// typedef [allocate(dont_free)] LPTLIBATTR;
|
|
[nocode] LocalReleaseTLibAttr();
|
|
}
|
|
|