14 lines
200 B
Go
14 lines
200 B
Go
package q5
|
|
|
|
type TimerCb func(int32, *Args)
|
|
type Args []interface{}
|
|
|
|
type Module interface {
|
|
Init()
|
|
UnInit()
|
|
}
|
|
|
|
const TIMER_EXEC_EVENT = 1
|
|
const TIMER_DELETE_EVENT = 2
|
|
const TIMER_DESTORY_EVENT = 3
|