mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
In practice, these headers are included only once, but it's a good practice to always use include guards.
8 lines
104 B
C
8 lines
104 B
C
#ifndef TINYXPM_H
|
|
#define TINYXPM_H
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
SDL_Surface *read_xpm(char *xpm[]);
|
|
|
|
#endif
|