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

« back to all changes in this revision

Viewing changes to xccom2/XCircuit.h

  • Committer: Bazaar Package Importer
  • Author(s): Aanjhan Ranganathan
  • Date: 2006-04-18 23:51:39 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060418235139-s49pkhwdzxvsxm5k
Tags: 3.4.21-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef XCIRCUIT_H_INCLUDED
 
2
#define XCIRCUIT_H_INCLUDED
 
3
 
 
4
#include "XCCom.h"
 
5
#include "xccom-def.h"
 
6
 
 
7
#define __ScriptControlConstants_MODULE_DEFINED__
 
8
#include "msscript.h"
 
9
 
 
10
/************************************************
 
11
 ************************************************
 
12
 ************************************************/
 
13
 
 
14
typedef struct XCircuit {
 
15
        xccom_object com;
 
16
        IScriptControl *engine;
 
17
} XCircuit;
 
18
 
 
19
XCircuit* make_XCircuit();
 
20
 
 
21
/************************************************
 
22
 ************************************************
 
23
 ************************************************/
 
24
 
 
25
typedef struct XCMenuItem {
 
26
        xccom_object com;
 
27
        void *item;
 
28
        IDispatch *target;
 
29
} XCMenuItem;
 
30
 
 
31
XCMenuItem* make_XCMenuItem(void *item);
 
32
 
 
33
#endif /* XCIRCUIT_H_INCLUDED */