mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
23 lines
272 B
C
23 lines
272 B
C
#ifndef __MLX_HANDLES__
|
|
#define __MLX_HANDLES__
|
|
|
|
extern "C"
|
|
{
|
|
struct mlx_context_handler
|
|
{
|
|
mlx::NonOwningPtr<mlx::Application> app;
|
|
};
|
|
|
|
struct mlx_window_handler
|
|
{
|
|
int id;
|
|
};
|
|
|
|
struct mlx_image_handler
|
|
{
|
|
mlx::NonOwningPtr<mlx::Texture> texture;
|
|
};
|
|
}
|
|
|
|
#endif
|