VOGONS

Common searches


Search results

Display options

Bad Environment Variable Retrieves

I'm working on an old dos app, trying to modify it to run sucessfully in dosbox, however i've run across an issue. It seems that it uses a native function for which i don't have the source which requires the environment variable comspec to be set, however it always returns that it cannot find it in …

Re: WindowMessages

Golden. If anyone else is after this kind of thing, here's a bit of a snippet of what i ended up doing: int FilterEvents(const SDL_Event *event) { // we'll handle only SDL_SYSWMEVENT events if (event->type == SDL_SYSWMEVENT) { SDL_SysWMmsg *wmmsg; wmmsg = event->syswm.msg; //printf("%d\n",(char*) …

WindowMessages

This is kinda a sdl question, but i figured i'd ask in here too since i'm using dosbox. Is there a way i can send standard windows messages to sdl and have them caught and return the msg number, wparam, and lparam? i've hooked up an event filter which is catching messages posted with SendMessage …

Getting Console Text

I'm trying to dump the contents of a screen running in dosbox into a plain ascii file. It's a text application, so there's no graphics to worry about, but I'm looking for a buffer or something which contains all the text on the screen. Also if i can get access to the attributes buffer for each char …

Page 1 of 1