You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|