Advertisement

Newbie Graphics question

Started by May 04, 2000 02:15 PM
1 comment, last by OoMMMoO 24 years, 7 months ago
I had left I message about fmemset() a while ago and I still have not gotten it to work with borland turbo c++ or djgpp I have tried including mem.h and memory.h but it still will not work. DOes anyone have an include function that uses fmemset() and can share the code to the .h file? It would be great help or if anyone knows how to make a line in dos without using fmemset() of a for loop. It would help me out alot
This is straight from Turbo C++ help file.

declared in "string.h" and "mem.h"

void *memset(void *s, int c, size_t n);

void far * far _fmemset(void far *s, int c, size_t n);


For DJGPP, I don't believe there is a _fmemset, if so, it is only there for compatibility, because DJGPP does not have far. I use to be able to make memset in assembly, but was a long time ago in another life.

What exactly is happening.

Domini

Edited by - Domini on 5/4/00 2:23:08 PM
Advertisement
Thanks your my hero

This topic is closed to new replies.

Advertisement