mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-29 01:08:44 +00:00
8 lines
No EOL
473 B
TypeScript
8 lines
No EOL
473 B
TypeScript
export const sdlCallbackInit: (d) => void;
|
|
export const sdlLaunchMain: (lib: string, func: string) => number;
|
|
export const sdlKeyEvent: (scancode: number, type: number) => number;
|
|
export const sdlTextAppend: (str: string) => number;
|
|
export const sdlTextEditing: (str: string, loc: number, length: number) => number;
|
|
export const sdlDialogExecCallback: () => void;
|
|
export const sdlDialogClearSelection: () => void;
|
|
export const sdlDialogFileSelected: (path: string) => void; |