40 lines
802 B
Plaintext
40 lines
802 B
Plaintext
|
// TaskApp.idl : IDL source for TaskApp.exe
|
||
|
//
|
||
|
|
||
|
// This file will be processed by the MIDL tool to
|
||
|
// produce the type library (TaskApp.tlb) and marshalling code.
|
||
|
|
||
|
import "oaidl.idl";
|
||
|
import "ocidl.idl";
|
||
|
#include "olectl.h"
|
||
|
|
||
|
[
|
||
|
uuid(9507A07C-02B9-4065-B8B7-A236ED7858FA),
|
||
|
version(1.0),
|
||
|
helpstring("TaskApp 1.0 Type Library")
|
||
|
]
|
||
|
library TaskAppLib
|
||
|
{
|
||
|
importlib("stdole2.tlb");
|
||
|
|
||
|
[
|
||
|
object,
|
||
|
uuid(CF95A4C7-843A-4290-B82F-3CC4E3608F20),
|
||
|
dual,
|
||
|
helpstring("ILiteControl Interface"),
|
||
|
pointer_default(unique)
|
||
|
]
|
||
|
interface ILiteControl : IDispatch
|
||
|
{
|
||
|
};
|
||
|
|
||
|
[
|
||
|
uuid(557B2222-AD88-461A-A29D-C32C07CEB4E9),
|
||
|
helpstring("LiteControl Class")
|
||
|
]
|
||
|
coclass LiteControl
|
||
|
{
|
||
|
[default] interface ILiteControl;
|
||
|
};
|
||
|
};
|