mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-01-20 22:24:29 +01:00
Refs <https://wiki.libsdl.org/SDL3/README-migration> PR #6216 <https://github.com/Genymobile/scrcpy/pull/6216>
15 lines
181 B
C
15 lines
181 B
C
#ifndef SC_ICON_H
|
|
#define SC_ICON_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <SDL3/SDL_surface.h>
|
|
|
|
SDL_Surface *
|
|
scrcpy_icon_load(void);
|
|
|
|
void
|
|
scrcpy_icon_destroy(SDL_Surface *icon);
|
|
|
|
#endif
|