rayjs/src/common.h

44 lines
673 B
C
Raw Normal View History

2023-05-01 16:24:56 +00:00
#ifndef COMMON_H
#define COMMON_H
2023-05-01 21:02:43 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
2023-05-01 16:24:56 +00:00
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
2023-05-01 21:02:43 +00:00
#define SDL_MAIN_HANDLED
2023-05-01 16:24:56 +00:00
#include <SDL.h>
typedef struct {
2023-05-01 21:02:43 +00:00
uint32_t width;
uint32_t height;
2023-05-01 16:24:56 +00:00
} App_Config;
typedef struct {
SDL_Window* window;
bool quit;
} App_State;
extern App_Config app_config;
extern App_State app_state;;
int app_init_sdl();
int app_update_sdl();
int app_dispose_sdl();
int app_init_quickjs(int argc, char** argv);
int app_update_quickjs();
int app_dispose_quickjs();
// utiles
char* app_read_file(const char* filename, size_t* out_size);
2023-05-01 21:02:43 +00:00
#ifdef __cplusplus
}
#endif
2023-05-01 16:24:56 +00:00
#endif