19 lines
335 B
C
19 lines
335 B
C
#ifndef ALLEGRO_QOI_H
|
|
#define ALLEGRO_QOI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//ALLEGRO_BITMAP* _al_load_qoi_f(ALLEGRO_FILE* filename, int flags);
|
|
//ALLEGRO_BITMAP* _al_load_qoi(const char* filename, int flags);
|
|
//bool _al_identify_qoi(ALLEGRO_FILE* f);
|
|
|
|
bool al_init_qoi();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //ALLEGRO_QOI_H
|