mirror of https://github.com/adamdruppe/arsd.git
catchup
This commit is contained in:
parent
245afed7fd
commit
0740dec056
|
@ -1,5 +1,7 @@
|
||||||
// http://msdn.microsoft.com/en-us/library/windows/desktop/bb775498%28v=vs.85%29.aspx
|
// 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
|
// 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.
|
// FIXME: the menus should be a bit more discoverable, at least a single click to open the others instead of two.
|
||||||
|
|
|
@ -6475,6 +6475,7 @@ enum ModifierState : uint {
|
||||||
rightButtonDown = 1024, /// ditto
|
rightButtonDown = 1024, /// ditto
|
||||||
}
|
}
|
||||||
else version(Windows)
|
else version(Windows)
|
||||||
|
/// ditto
|
||||||
enum ModifierState : uint {
|
enum ModifierState : uint {
|
||||||
shift = 4, ///
|
shift = 4, ///
|
||||||
ctrl = 8, ///
|
ctrl = 8, ///
|
||||||
|
@ -10795,7 +10796,7 @@ Atom XInternAtom(
|
||||||
Bool /* only_if_exists */
|
Bool /* only_if_exists */
|
||||||
);
|
);
|
||||||
|
|
||||||
Status XInternAtoms(Display*, char**, int, Bool);
|
Status XInternAtoms(Display*, const char**, int, Bool, Atom*);
|
||||||
char* XGetAtomName(Display*, Atom);
|
char* XGetAtomName(Display*, Atom);
|
||||||
Status XGetAtomNames(Display*, Atom*, int count, char**);
|
Status XGetAtomNames(Display*, Atom*, int count, char**);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue