File: Cbrowse.idl

package info (click to toggle)
kompozer 1%3A0.8~b3.dfsg.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 283,956 kB
  • ctags: 314,166
  • sloc: cpp: 1,763,181; ansic: 990,028; xml: 97,969; makefile: 46,334; asm: 34,989; perl: 26,943; sh: 20,165; cs: 6,232; java: 5,513; python: 3,221; pascal: 340; lex: 306; php: 244; csh: 132; objc: 97; yacc: 79; ada: 49; awk: 14; sql: 4; sed: 4
file content (64 lines) | stat: -rw-r--r-- 1,449 bytes parent folder | download | duplicates (11)
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
// Cbrowse.idl : IDL source for Cbrowse.exe

import "oaidl.idl";

typedef enum 
{
	trNotRun,
	trFailed,
	trPassed,
	trPartial
} TestResult;

[
	object,
	uuid(95AF1AB1-FA66-11D2-A284-000000000000),
	dual,
	helpstring("DITestScriptHelper Interface"),
	pointer_default(unique)
]
interface DITestScriptHelper : IDispatch
{
	[id(1), helpstring("method OutputString")] HRESULT OutputString(BSTR bstrMessage);
	[propget, id(2), helpstring("property WebBrowser")] HRESULT WebBrowser([out, retval] LPDISPATCH *pVal);
	[propput, id(3), helpstring("property Result")] HRESULT Result([in] TestResult newVal);
	[propget, id(4), helpstring("property TestURL")] HRESULT TestURL([out, retval] BSTR *pVal);
	[propget, id(5), helpstring("property TestCGI")] HRESULT TestCGI([out, retval] BSTR *pVal);
};

[
	uuid(5B209213-F756-11D2-A27F-000000000000),
	version(1.0),
	helpstring("Cbrowse 1.0 Type Library")
]
library CbrowseLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");
	[
		uuid(95AF1AB2-FA66-11D2-A284-000000000000),
		helpstring("TestScriptHelper Class")
	]
	coclass TestScriptHelper
	{
		[default] interface DITestScriptHelper;
	};
	[
		uuid(31204F42-FCE8-11D2-A289-000000000000),
		helpstring("ControlEventSink Class")
	]
	coclass ControlEventSink
	{
		[default] interface IDispatch;
	};
	[
		uuid(8EC06081-21DE-11D3-941E-000000000000),
		helpstring("CBrowserCtlSite Class")
	]
	coclass CBrowserCtlSite
	{
		[default] interface IUnknown;
	};
};