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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/* file generated by oo2c -- do not edit */
#include "Time.h"
#include "SysClock.h"
/* local definitions */
/* function prototypes */
/* module and type descriptors */
static const struct {
int length;
void* pad;
const char name[5];
} _n0 = {5, NULL, {"Time"}};
static struct _MD Time_md = {
NULL,
&Kernel__ModuleDesc_td.td,
{
NULL,
(const unsigned char*)_n0.name,
-1,
NULL
}
};
static const struct {
int length;
void* pad;
const char name[10];
} _n1 = {10, NULL, {"TimeStamp"}};
static const struct {
int length;
void* pad;
_Type btypes[1];
} Time__TimeStamp_tdb = {
1,
NULL,
{
&Time__TimeStamp_td.td
}
};
static const struct {
int length;
void* pad;
const void* tbprocs[4];
} _tb0 = {4, NULL, {
(void*)Time__TimeStamp_Add,
(void*)Time__TimeStamp_Sub,
(void*)Time__TimeStamp_Delta,
(void*)Time__TimeStamp_Cmp
}};
struct _TD Time__TimeStamp_td = {
NULL,
&Types__TypeDesc_td.td,
{
Time__TimeStamp_tdb.btypes,
_tb0.tbprocs,
(const unsigned char*)_n1.name,
&Time_md.md,
0,
'0', '1',
sizeof(Time__TimeStamp),
NULL
}
};
static const struct {
int length;
void* pad;
const char name[9];
} _n2 = {9, NULL, {"Interval"}};
static const struct {
int length;
void* pad;
_Type btypes[1];
} Time__Interval_tdb = {
1,
NULL,
{
&Time__Interval_td.td
}
};
static const struct {
int length;
void* pad;
const void* tbprocs[5];
} _tb1 = {5, NULL, {
(void*)Time__Interval_Add,
(void*)Time__Interval_Sub,
(void*)Time__Interval_Cmp,
(void*)Time__Interval_Scale,
(void*)Time__Interval_Fraction
}};
struct _TD Time__Interval_td = {
NULL,
&Types__TypeDesc_td.td,
{
Time__Interval_tdb.btypes,
_tb1.tbprocs,
(const unsigned char*)_n2.name,
&Time_md.md,
0,
'0', '1',
sizeof(Time__Interval),
&Time__TimeStamp_td.td
}
};
/* local strings */
|