00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _H_incrrset
00026
00027 #define _H_incrrset
00028
00029 #ifndef _H_ruledef
00030 #include "ruledef.h"
00031 #endif
00032
00033 #ifdef LOCALE
00034 #undef LOCALE
00035 #endif
00036
00037 #ifdef _INCRRSET_SOURCE_
00038 #define LOCALE
00039 #else
00040 #define LOCALE extern
00041 #endif
00042
00043 #define GetIncrementalReset() EnvGetIncrementalReset(GetCurrentEnvironment())
00044 #define SetIncrementalReset(a) EnvSetIncrementalReset(GetCurrentEnvironment(),a)
00045
00046 LOCALE void IncrementalReset(void *,struct defrule *);
00047 LOCALE intBool EnvGetIncrementalReset(void *);
00048 LOCALE intBool EnvSetIncrementalReset(void *,intBool);
00049 LOCALE int GetIncrementalResetCommand(void *);
00050 LOCALE int SetIncrementalResetCommand(void *);
00051
00052 #endif
00053
00054
00055
00056
00057
00058
00059
00060
00061