mirror of
https://github.com/SeanOMik/eBookReaderSwitch.git
synced 2025-02-16 13:40:11 +00:00
I've finally gotten a working build. No longer crashes your switch. So far I've only been able to get it to read most PDF files. Some PDF files do crash the app.
13 lines
No EOL
329 B
C
13 lines
No EOL
329 B
C
#ifndef EBOOK_READER_COMMON_H
|
|
#define EBOOK_READER_COMMON_H
|
|
|
|
#include <SDL2/SDL.h>
|
|
#include <SDL2/SDL_ttf.h>
|
|
//#include "SDL_helper.h"
|
|
|
|
extern SDL_Window *WINDOW;
|
|
//extern SDL_Surface *WINDOW_SURFACE;
|
|
extern SDL_Renderer *RENDERER;
|
|
extern TTF_Font *ARIAL, *ARIAL_35, *ARIAL_30, *ARIAL_27, *ARIAL_25, *ARIAL_20, *ARIAL_15;
|
|
|
|
#endif |