mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
14 lines
286 B
C
14 lines
286 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <sys/cdefs.h>
|
||
|
|
#include <Kernel/GUITypes.h>
|
||
|
|
|
||
|
|
__BEGIN_DECLS
|
||
|
|
|
||
|
|
int gui_create_window(const GUI_CreateWindowParameters* params);
|
||
|
|
int gui_invalidate_window(int window_id);
|
||
|
|
int gui_get_window_backing_store(int window_id, GUI_WindowBackingStoreInfo* info);
|
||
|
|
|
||
|
|
__END_DECLS
|
||
|
|
|