Search found 2 matches

by mdev123
27 Sep 2023 15:57
Forum: DOS Batch Forum
Topic: Batch native: a collection of dll's for cmd
Replies: 2
Views: 12884

Batch native: a collection of dll's for cmd

Batch Native is a collection of DLL's that inject themselves into cmd.exe using rundll32. From there, they work in the background. This allows things like asynchronous input polling for batch games, Discord Rich Presence support or fast map rendering by writing directly into CMD's buffer, async 4 vo...
by mdev123
27 Sep 2023 15:49
Forum: DOS Batch Forum
Topic: Asynchronous catching of WM_PAINT window message, can it be done ?
Replies: 2
Views: 5732

Re: Asynchronous catching of WM_PAINT window message, can it be done ?

Even though I have (a very ugly and hacky indeed) method of grabbing the associated conhost, I have never managed to override WM_PAINT, or any window message for that matter. Perhaps I'd need to inject a dll into the conhost and do work from there. Or there may be another way, which i haven't found/...