Jump to content


SerMSYS

Member Since 26 May 2005
Offline Last Active Oct 15 2011 02:39 AM

Posts I've Made

In Topic: Gmode Physics V0.50b - Gm 6/7/8 Support

09 October 2009 - 03:02 AM

Make sure that World_Create returns a double so that it works in GM7

In Topic: Quikfind Dll

11 July 2009 - 07:19 PM

I've found a bug but it's easy to fix.

In QF_Init() the flag constants are supposed to be in hexadecimal, so change them so they have a $ in front of the values like this:
    qf_directory = $10;
    qf_archive = $20;
and so on...

In Topic: Dll That Sends Emails?

30 June 2009 - 06:50 AM

does anyone know of a good dll that sends an email?
if you do please give me  link to it or tell me how to do it.

~ aprentice


What you'll need:

39dll, knowledge of SMTP, and a DLL that can resolve MX addresses

In Topic: C++ Dll String

29 June 2009 - 05:17 AM

You still have to allocate memory for the string, and copy the string over:

string str ("Is this a C Style String?");
cstr = new char [str.size()+1];
strcpy (cstr, str.c_str());


Wouldn't that cause a memory leak though? I don't think GM deallocates it once it's done with it...

In Topic: Mousewheel Dll?

04 June 2009 - 01:41 AM

nevermind, I found it

Here's the link in case anyone else wants it:
http://ccisuper.holl...ions/mwheel.zip