mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
Build Painter & friends into LibC. Use it in the GUI test app.
This commit is contained in:
parent
bfef4afa6a
commit
b673c1a77d
16 changed files with 105 additions and 50 deletions
13
LibC/gui.h
Normal file
13
LibC/gui.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue