This commit is contained in:
Adam D. Ruppe 2018-11-19 11:43:14 -05:00
parent 245afed7fd
commit 0740dec056
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
// http://msdn.microsoft.com/en-us/library/windows/desktop/bb775498%28v=vs.85%29.aspx
// minigui needs to have a stdout redirection for gui mode on windows writeln
// need a viewer widget that works like a web page - arrows scroll down consistently
// FIXME: the menus should be a bit more discoverable, at least a single click to open the others instead of two.

View File

@ -6475,6 +6475,7 @@ enum ModifierState : uint {
rightButtonDown = 1024, /// ditto
}
else version(Windows)
/// ditto
enum ModifierState : uint {
shift = 4, ///
ctrl = 8, ///
@ -10795,7 +10796,7 @@ Atom XInternAtom(
Bool /* only_if_exists */
);
Status XInternAtoms(Display*, char**, int, Bool);
Status XInternAtoms(Display*, const char**, int, Bool, Atom*);
char* XGetAtomName(Display*, Atom);
Status XGetAtomNames(Display*, Atom*, int count, char**);