diff options
author | shennetsind <notind@gmail.com> | 2013-06-10 17:53:37 -0700 |
---|---|---|
committer | shennetsind <notind@gmail.com> | 2013-06-10 17:53:37 -0700 |
commit | 8821ff87533b037d5d4914db6dbdeacfa5fca4ce (patch) | |
tree | 5fd975f4501e8d71ff1b5b31d66a6b99bc813927 /src/common/timer.h | |
parent | 8f85487dbdc1a5f4bd3d01bc3fc75bba9b643124 (diff) | |
parent | 4d9a0a869c52f7acab6ca110d78aa006f76f70a5 (diff) | |
download | hercules-8821ff87533b037d5d4914db6dbdeacfa5fca4ce.tar.gz hercules-8821ff87533b037d5d4914db6dbdeacfa5fca4ce.tar.bz2 hercules-8821ff87533b037d5d4914db6dbdeacfa5fca4ce.tar.xz hercules-8821ff87533b037d5d4914db6dbdeacfa5fca4ce.zip |
Merge pull request #42 from Earisu/master
Sql Statement interface
Diffstat (limited to 'src/common/timer.h')
-rw-r--r-- | src/common/timer.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/common/timer.h b/src/common/timer.h index 2cc243692..50f1c354b 100644 --- a/src/common/timer.h +++ b/src/common/timer.h @@ -1,10 +1,8 @@ // Copyright (c) Hercules Dev Team, licensed under GNU GPL. // See the LICENSE file // Portions Copyright (c) Athena Dev Teams - #ifndef _TIMER_H_ #define _TIMER_H_ - #include "../common/cbasetypes.h" #define DIFF_TICK(a,b) ((int)((a)-(b))) @@ -34,7 +32,7 @@ struct TimerData { intptr_t data; }; -/* Hercules Renewal Phase One */ + /*===================================== * Interface : timer.h * Generated by HerculesInterfaceMaker @@ -59,7 +57,6 @@ struct timer_interface { unsigned long (*get_uptime) (void); int (*do_timer) (unsigned int tick); - void (*init) (void); void (*final) (void); } iTimer_s; |