ref: 55cc80be1e02ca7e0a4d5df4cd164afd701862d0
dir: /src/ft2_hpc.h/
#ifndef _ft2_hpc_h_
#define _ft2_hpc_h_
#include <stdint.h>
#include <stdbool.h>
typedef struct
{
uint64_t freq64;
double dFreqMulMicro, dFreqMulMs;
} hpcFreq_t;
typedef struct
{
uint64_t durationInt, durationFrac;
uint64_t endTimeInt, endTimeFrac;
uint64_t frameCounter, resetFrame;
} hpc_t;
extern hpcFreq_t hpcFreq;
void hpc_Init(void);
void hpc_SetDurationInHz(hpc_t *hpc, uint32_t dHz);
void hpc_ResetCounters(hpc_t *hpc);
void hpc_Wait(hpc_t *hpc);
#endif