Files
Custom-Operating-System/userland/servers/window_server/src/Target/Generic/Window.h

14 lines
236 B
C
Raw Normal View History

2025-02-12 09:54:05 -05:00
#pragma once
#include "../Desktop/Window.h"
#include "../Mobile/Window.h"
namespace WinServer {
#ifdef TARGET_DESKTOP
using Window = Desktop::Window;
#elif TARGET_MOBILE
using Window = Mobile::Window;
#endif
} // namespace WinServer