mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
19 lines
370 B
C++
19 lines
370 B
C++
#ifndef EVENT_SYNTHESIZE_HPP
|
|
#define EVENT_SYNTHESIZE_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
class EvtContext;
|
|
|
|
void SynthesizeDestroy(EvtContext* context);
|
|
|
|
void SynthesizeIdle(EvtContext* context, uint32_t currTime, float elapsedSec);
|
|
|
|
int32_t SynthesizeInitialize(EvtContext* context);
|
|
|
|
void SynthesizePaint(EvtContext* context);
|
|
|
|
void SynthesizePoll(EvtContext* context);
|
|
|
|
#endif
|