17 lines
222 B
C
17 lines
222 B
C
|
#ifndef ICON_H
|
||
|
#define ICON_H
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <SDL2/SDL.h>
|
||
|
#include <libavformat/avformat.h>
|
||
|
|
||
|
SDL_Surface *
|
||
|
scrcpy_icon_load(void);
|
||
|
|
||
|
void
|
||
|
scrcpy_icon_destroy(SDL_Surface *icon);
|
||
|
|
||
|
#endif
|