saveload.h
changeset 557 8540788a827e
parent 556 d6b9bbfe0596
child 817 4f9377b7fd2b
equal deleted inserted replaced
556:d6b9bbfe0596 557:8540788a827e
    90 
    90 
    91 	SLE_STRINGID = SLE_FILE_STRINGID | SLE_VAR_U16,
    91 	SLE_STRINGID = SLE_FILE_STRINGID | SLE_VAR_U16,
    92 };
    92 };
    93 
    93 
    94 #define SLE_VAR(t,i,c) 0 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
    94 #define SLE_VAR(t,i,c) 0 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
    95 #if MSC_VER == 1200 /* XXX workaround for MSVC6 */
    95 #if _MSC_VER == 1200 /* XXX workaround for MSVC6 */
    96 #define SLE_VAR2(t0,i0, t1, i1, c) 0 | ((offsetof(t0, i0) + offsetof(t1, i1)) & 0xF), (offsetof(t0, i0) + offsetof(t1, i1)) >> 4, c
    96 #define SLE_VAR2(t0,i0, t1, i1, c) 0 | ((offsetof(t0, i0) + offsetof(t1, i1)) & 0xF), (offsetof(t0, i0) + offsetof(t1, i1)) >> 4, c
    97 #endif
    97 #endif
    98 #define SLE_REF(t,i,c) 0x10 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
    98 #define SLE_REF(t,i,c) 0x10 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c
    99 #define SLE_ARR(t,i,c,l) 0x20 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c, l
    99 #define SLE_ARR(t,i,c,l) 0x20 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c, l
   100 #define SLE_CONDVAR(t,i,c,from,to) 0x40 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c, from, to
   100 #define SLE_CONDVAR(t,i,c,from,to) 0x40 | (offsetof(t,i) & 0xF), offsetof(t,i) >> 4, c, from, to