q5/types.go
2023-10-25 15:46:41 +08:00

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