mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
13 lines
286 B
C
13 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
|
|
|