mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-18 21:26:07 +00:00
17 lines
228 B
C
17 lines
228 B
C
#ifndef SC_ICON_H
|
|
#define SC_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
|