mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
22 lines
779 B
C
22 lines
779 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdTask_Task__H
|
|
#define __PikaStdTask_Task__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdTask_Task(Args *args);
|
|
|
|
void PikaStdTask_Task___init__(PikaObj *self);
|
|
void PikaStdTask_Task_call_always(PikaObj *self, Arg* fun_todo);
|
|
void PikaStdTask_Task_call_period_ms(PikaObj *self, Arg* fun_todo, int period_ms);
|
|
void PikaStdTask_Task_call_when(PikaObj *self, Arg* fun_todo, Arg* fun_when);
|
|
void PikaStdTask_Task_platformGetTick(PikaObj *self);
|
|
void PikaStdTask_Task_run_forever(PikaObj *self);
|
|
void PikaStdTask_Task_run_once(PikaObj *self);
|
|
void PikaStdTask_Task_run_until_ms(PikaObj *self, int until_ms);
|
|
|
|
#endif
|