1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/ ocx.idl : type library source for ActiveX Control project.
// This file will be processed by the MIDL compiler tool to
// produce the type library (ocx.tlb) that will become a resource in
// ocx.ocx.
#include <olectl.h>
#include <idispids.h>
[ uuid(0337E397-A8D4-4250-8680-DC14F86BB8CF), version(1.0),
helpfile("ocx.hlp"),
helpstring("ocxActiveX Control module"),
control ]
library ocxLib
{
importlib(STDOLE_TLB);
// Primary dispatch interface for CocxCtrl
[ uuid(33087541-1BB7-4557-A402-0E4CFF31A2CF),
helpstring("Dispatch interface for ocxControl")]
dispinterface _Docx
{
properties:
methods:
[id(1)] void Create(...)
[id(2)] void RegisterEventCallback(...);
[id(3)] void SuspendDisplay(...);
... |
Partager