Files
scrcpy/app/src/icon.h
Romain Vimont af15c72f9c Cleanup includes
Improved manually with the help of neovim LSP warnings and iwyu:

    iwyu -Ibuilddir/app/ -Iapp/src/ app/src/XXX.c
2024-12-23 12:19:47 +01:00

15 lines
181 B
C

#ifndef SC_ICON_H
#define SC_ICON_H
#include "common.h"
#include <SDL2/SDL_surface.h>
SDL_Surface *
scrcpy_icon_load(void);
void
scrcpy_icon_destroy(SDL_Surface *icon);
#endif