-
```
1. Change font
Change res.rc these lines:
IDD_MAINBOX DIALOG DISCARDABLE 32, 8, 256, 152
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
to:
IDD_MAINBOX DIALOGEX DISCARDABLE 32, 8, 256, 1…
-
As an example in Assertion.cpp shows, sometimes we might want to create a popup window through Window Manager on OS. While on Windows it is as easy as calling a single WinAPI call (MessageBox), on Lin…
-
Useful for editors
Might be better as its own NE
http://zetcode.com/gui/winapi/menus/
Might be an existing cross platform solution which could be wrapped
-
### What is your suggestion?
I use conan to manage packages built against the GDK, the Microsoft framework for developing games.
This platform
- is Windows
- has a Win32 partition, `WINAPI_PART…
-
we need a database of WinAPI definitions with argument names and types to be used for proper arguments analysis in the disasm.
-
### Problem
Can you fix the commands below so the build completes?
``` bash
# extract acl90express-x86.exe to C:\acl90express
# create mlisp
;; mlisp:
(progn
(build-lisp-image "sys:mlisp.dxl" :…
-
here is error:
```
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in _run_code
File "C:\Users\User\AppData\Local\Programs\Python\Python312\Sc…
-
some references
https://github.com/Nexus-Mods/node-nexus-api
https://github.com/Nexus-Mods/node-winapi-bindings
https://github.com/Nexus-Mods/Nexus-Mod-Manager
-
Full tree output using cargo tree
├── Inflector v0.10.0
│ ├── lazy_static v0.2.8
│ └── regex v0.2.1
│ ├── aho-corasick v0.6.3
│ │ └── memchr v1.0.1
│ │ └── l…
ghost updated
6 years ago
-
_From @masonwheeler on July 1, 2015 14:48_
Right now, if you want to answer the question "Is on the keyboard currently down?", you do it with a PInvoke call to `GetAsyncKeyState`. Problem is, that …