/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/SDK/Include/IVEHandler.idl
73 строки
2 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /* ------------------------------------------------------------------------- * * Common Language Runtime Verification Event Handler Interface * ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- * * Imported types * ------------------------------------------------------------------------- */ #ifndef DO_NO_IMPORTS import "unknwn.idl"; #define _VER_RAW_STRUCT_FOR_IDL_ #include "VerError.h" #undef _VER_RAW_STRUCT_FOR_IDL_ #endif typedef _VerError VEContext; /* ------------------------------------------------------------------------- * * Forward declarations * ------------------------------------------------------------------------- */ interface IVEHandler; /* ------------------------------------------------------------------------- * * Library defintion * ------------------------------------------------------------------------- */ [ uuid(856CA1B0-7DAB-11d3-ACEC-00C04F86C309), version(1.0), helpstring("Common Language Runtime Verification Event Handler 1.0 Type Library") ] library VEHandlerLib { importlib("STDOLE2.TLB"); [ uuid(856CA1B1-7DAB-11d3-ACEC-00C04F86C309) ] coclass VEHandlerClass { [default] interface IVEHandler; }; }; /* ------------------------------------------------------------------------- * * IVEHandler interface * ------------------------------------------------------------------------- */ [ object, uuid(856CA1B2-7DAB-11d3-ACEC-00C04F86C309), pointer_default(unique) ] interface IVEHandler : IUnknown { HRESULT VEHandler( [in] HRESULT VECode, [in] VEContext Context, [in] SAFEARRAY(VARIANT) psa); HRESULT SetReporterFtn( [in] __int64 lFnPtr); };