File: HandP.h

package info (click to toggle)
swisswatch 0.6-13
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 288 kB
  • ctags: 362
  • sloc: ansic: 1,987; makefile: 51; sh: 14
file content (29 lines) | stat: -rw-r--r-- 540 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
#ifndef _HandP_h_
#define _HandP_h_

#include "HandOrMarP.h"
#include "Hand.h"

typedef struct _HandClassPart {
  int		dummy;
} HandClassPart;

typedef struct _HandClassRec {
    ObjectClassPart object_class;
    HandOrMarkClassPart hand_or_mark_class_part;
    HandClassPart hand_class_part;
} HandClassRec;

extern HandClassRec handClassRec;

typedef struct _HandPart {
  int		dummy;
} HandPart;

typedef struct _HandRec {
    ObjectPart  object;
    HandOrMarkPart hand_or_mark;
    HandPart hand;
} HandRec;

#endif /* not _HandP_h_ */