2022-04-13 05:59:01 +08:00
|
|
|
#ifndef SC_ICON_H
|
|
|
|
#define SC_ICON_H
|
2021-10-23 00:51:20 +08:00
|
|
|
|
|
|
|
#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
|