-
Notifications
You must be signed in to change notification settings - Fork 1
/
GRScript.idl
64 lines (58 loc) · 1.37 KB
/
GRScript.idl
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Copyright(c) 2000, 2009 arton
*
* You may distribute under the terms of either the GNU General Public
* License
*/
import "oaidl.idl";
import "ocidl.idl";
import "activscp.idl";
[
uuid(474067DF-D9CE-4324-9D3F-E81F8E011AD1),
version(1.9),
helpstring("Global Ruby Script 1.9")
]
library GRSCRIPTLib
{
importlib("stdole32.tlb");
importlib("stdole2.tlb");
[
object,
uuid(0AC0D357-E866-11D3-8E82-0000F45A3C05),
helpstring("IGlobalRubyScript Interface"),
pointer_default(unique)
]
interface IGlobalRubyScript : IUnknown
{
};
[
object,
uuid(0A4CBEBD-C46B-4A7C-A1E2-AD474C330C7A),
dual,
helpstring("rubyize other scripting object"),
pointer_default(unique)
]
interface IRubyize : IDispatch
{
[id(1), propget] HRESULT Version([out, retval]BSTR* pVersion);
[id(2), propget] HRESULT RubyVersion([out, retval]BSTR* pVersion);
[id(10)] HRESULT rubyize([in]VARIANT val, [out, retval]VARIANT* pObj);
[id(11)] HRESULT erubyize([in]BSTR script, [out, retval]VARIANT* pObj);
};
[
uuid(0A383007-32FE-4ec0-97D6-59892ECD5413),
helpstring("RubyScript Language (global)")
]
coclass GlobalRubyScript
{
[default] interface IGlobalRubyScript;
};
[
uuid(63F6DE8D-85DF-4635-B8BF-04CE3EC5D2CC),
helpstring("Rubyize Class")
]
coclass SimpleRubyize
{
[default] interface IRubyize;
};
};