source: trunk/Utilities/Miscellaneous/ExcelControl/ExcelControl.idl @ 602

Last change on this file since 602 was 602, checked in by roman, 8 years ago

Code formatting

File size: 749 bytes
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2016
3// Created by Roman Ryltsov roman@alax.info
4// 
5// A permission to use the source code is granted as long as reference to
6// source website http://alax.info is retained.
7
8#include "olectl.h"
9import "oaidl.idl";
10import "ocidl.idl";
11
12[
13        object,
14        uuid(7B577EB9-4727-4535-9EDD-A820F0AEB15D),
15        dual,
16        nonextensible,
17        pointer_default(unique)
18]
19interface ISample : IDispatch{
20};
21
22[
23        uuid(F9F92D1F-6311-4C11-8C2A-2E7B0036A9EB),
24        version(1.0),
25]
26library ExcelControlLib
27{
28        importlib("stdole2.tlb");
29        [
30                uuid(B3FA256B-752B-4339-A0AA-EFE053753DDE),             
31                control
32        ]
33        coclass Sample
34        {
35                [default] interface ISample;
36        };
37};
38
Note: See TracBrowser for help on using the repository browser.