Cogs.Foundation
Loading...
Searching...
No Matches
XineramaModule.h
Go to the documentation of this file.
1#pragma once
2#if defined( __linux__ )
3
4#include "Module.h"
5
6typedef int Bool;
7typedef int Status;
8
9#include <X11/extensions/Xinerama.h>
10
11namespace Cogs {
12 class XineramaModule : public Module {
13 public:
14 static XineramaModule& instance();
15 virtual void initPtrs() override;
16
17 XineramaScreenInfo* (*XineramaQueryScreens)(Display* display, int* number);
18 };
19}
20#endif
Main Cogs namespace.
Definition: MortonCode.h:5