digitalmars.D.learn - Why this returns the following error massage: identifier 'memset'
- Cris (6/6) Jul 11 2006 alias memset SDL_memset;
- Tom S (4/8) Jul 11 2006 import std.c.string;
- Cris (4/13) Jul 11 2006 Thanks I've fixed it. It seems that the bindings are not upto the latest...
- Tom S (4/5) Jul 11 2006 You might want to try Derelict: http://www.dsource.org/projects/derelict
- =?UTF-8?B?QW5kZXJzIEYgQmrDtnJrbHVuZA==?= (6/13) Jul 12 2006 I'll see if I can't update it to SDL 1.2.11 and GDC 0.19...
alias memset SDL_memset; } else { void * SDL_memset(void *dst, int c, size_t len); } This is from Anders' SDL bindings. http://www.algonet.se/~afb/d/
Jul 11 2006
Cris wrote:alias memset SDL_memset; } else { void * SDL_memset(void *dst, int c, size_t len); }import std.c.string; -- Tomasz Stachowiak /+ a.k.a. h3r3tic +/
Jul 11 2006
Tom S wrote:Cris wrote:Thanks I've fixed it. It seems that the bindings are not upto the latest compiler. There are a few more error messages but I've commented out the code. Are there any uptodate SDL 1.2.11 bindings?alias memset SDL_memset; } else { void * SDL_memset(void *dst, int c, size_t len); }import std.c.string;
Jul 11 2006
Cris wrote:Are there any uptodate SDL 1.2.11 bindings?You might want to try Derelict: http://www.dsource.org/projects/derelict -- Tomasz Stachowiak /+ a.k.a. h3r3tic +/
Jul 11 2006
Cris wrote:I'll see if I can't update it to SDL 1.2.11 and GDC 0.19... Also need some more detailed documentation like a tutorial, similar to the ones for Build/Derelict that can be found at http://dmedia.dprogramming.com/Tutorials/SdlGlTutorial1 --andersThis is from Anders' SDL bindings.Thanks I've fixed it. It seems that the bindings are not upto the latest compiler. There are a few more error messages but I've commented out the code. Are there any uptodate SDL 1.2.11 bindings?
Jul 12 2006