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

Collapse All | Expand All

(-)func/event/include/capi.h (-5 / +5 lines)
Lines 18-28 Link Here
18
18
19
// extract info from init_simpack()'s parameter:
19
// extract info from init_simpack()'s parameter:
20
20
21
    const FEL_TYPE_MASK     = 0x000f; // new
21
    const int FEL_TYPE_MASK     = 0x000f; // new
22
    const REMOVE_DUP_MASK   = 0x0010; // orig REMOVE_DUPLICATES was pound-defined as 16 but not used
22
    const int REMOVE_DUP_MASK   = 0x0010; // orig REMOVE_DUPLICATES was pound-defined as 16 but not used
23
    const REMOVE_DUPLICATES = 0x0010; // for compat w/simpack appl code qnet
23
    const int REMOVE_DUPLICATES = 0x0010; // for compat w/simpack appl code qnet
24
    const RESEED_MASK       = 0x0020; // orig RESEED was pound-defined as 32 but not used
24
    const int RESEED_MASK       = 0x0020; // orig RESEED was pound-defined as 32 but not used
25
    const RESEED            = 0x0020; // for compat w/simpack
25
    const int RESEED            = 0x0020; // for compat w/simpack
26
26
27
// Group 1: related to class Future:
27
// Group 1: related to class Future:
28
28

Return to bug 16255