q5/types.go
aozhiwei efae915742 1
2023-08-12 18:51:47 +08:00

9 lines
156 B
Go

package q5
type TimerCb func (int32, *Args)
type Args []interface{}
const TIMER_EXEC_EVENT = 1
const TIMER_DELETE_EVENT = 2
const TIMER_DESTORY_EVENT = 3