View | Details | Raw Unified | Return to bug 16255 | Differences between
and this patch

Collapse All | Expand All

(-)func/event/include/queuing.h (-6 / +6 lines)
Lines 31-45 Link Here
31
    enum YesNo {NO, YES};
31
    enum YesNo {NO, YES};
32
    enum Switch {OFF, ON};
32
    enum Switch {OFF, ON};
33
    enum TrueFalse {FALSE, TRUE};
33
    enum TrueFalse {FALSE, TRUE};
34
    const NOT_FOUND    =  -1; // in Event
34
    const int NOT_FOUND    =  -1; // in Event
35
    const MAX_NAME_LEN = 100; // in Facility
35
    const int MAX_NAME_LEN = 100; // in Facility
36
    const ES_STG_LEN   =  24; // in Estatus and Event
36
    const int ES_STG_LEN   =  24; // in Estatus and Event
37
    const BFR_SIZ      = 222; // in Facility & Future
37
    const int BFR_SIZ      = 222; // in Facility & Future
38
    const TINY_BFR_SIZ =  16;
38
    const int TINY_BFR_SIZ =  16;
39
39
40
// Class dfns:
40
// Class dfns:
41
41
42
    const MAX_NUM_ATTR = 5; // for old style token, for compatibility mode
42
    const int MAX_NUM_ATTR = 5; // for old style token, for compatibility mode
43
    struct TOKEN // old style token
43
    struct TOKEN // old style token
44
      {
44
      {
45
      float attr [MAX_NUM_ATTR];
45
      float attr [MAX_NUM_ATTR];

Return to bug 16255