diff options
author | lloyd <[email protected]> | 2006-12-14 11:12:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-12-14 11:12:32 +0000 |
commit | 2b32d88fabd0cf45cb42981dd03258b39d1828c4 (patch) | |
tree | db8549290d367b6eef4ff62ff4bc62357135afe4 /include/enums.h | |
parent | 780243495bda65e52f8f1797a3db0a25e420998b (diff) |
Move the UI pulse functions into the global library state. That is (as best
as I can tell) the last of the global data, with the exception of the single
global_lib_state pointer in libstate.cpp
Diffstat (limited to 'include/enums.h')
-rw-r--r-- | include/enums.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/enums.h b/include/enums.h index bc939aba1..c5ffeff24 100644 --- a/include/enums.h +++ b/include/enums.h @@ -99,6 +99,21 @@ enum Character_Set { LATIN1_CHARSET }; +/************************************************* +* Pulse Function * +*************************************************/ +enum Pulse_Type { + GENERAL_PULSE, + + PIPE_WRITE, + + PRIME_SEARCHING, + PRIME_SIEVING, + PRIME_PASSED_SIEVE, + PRIME_TESTING, + PRIME_FOUND +}; + static const u32bit NO_CERT_PATH_LIMIT = 0xFFFFFFF0; } |