~ubuntu-branches/ubuntu/precise/xcircuit/precise

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
#ifndef XCIRCUIT_H_INCLUDED
#define XCIRCUIT_H_INCLUDED

#include "XCCom.h"
#include "xccom-def.h"

#define __ScriptControlConstants_MODULE_DEFINED__
#include "msscript.h"

/************************************************
 ************************************************
 ************************************************/

typedef struct XCircuit {
	xccom_object com;
	IScriptControl *engine;
} XCircuit;

XCircuit* make_XCircuit();

/************************************************
 ************************************************
 ************************************************/

typedef struct XCMenuItem {
	xccom_object com;
	void *item;
	IDispatch *target;
} XCMenuItem;

XCMenuItem* make_XCMenuItem(void *item);

#endif /* XCIRCUIT_H_INCLUDED */