Sorry I think you misunderstood. I meant to say that there are some changes to be made in the script and perhaps GSTNet source as well, if you want to use GSTNet with Lite-C. I remembered this from when I was working on Destop's MySQL plugin. Didn't meant you can use the MySQL dll for your quest.

Anyways i've tried GSTNet now. Only I found the GSTNet_HTTPGet function a little confusing. Because sResult is a var and string? Maybe nfs42 can explain?

test.wdl Code:
PLUGINDIR = ".";
BIND "GSTNet.dll";


test.c Code:
#include <acknex.h>

var sResult;

STRING* sGSTNet_HTTPResult[100000]; // allocate memory for results
STRING* sHostname;
STRING* sPath;

//------------------------------------------------------------------
// helper functions
//------------------------------------------------------------------
function GSTNet_HTTPGet(STRING* sHostname, STRING* sPath, STRING* sResult); // returns a requested page
function GSTNet_HTTPBusy(); // returns != 0 if a httprequest is busy

function http()
{
//var sResult;
sResult = str_create("#100000");
GSTNet_HTTPGet("www.nixip.com","/index.php",sResult);

while(GSTNet_HTTPBusy()){wait(1);}
diag(sResult);
str_remove(sResult);
}

//------------------------------------------------------------------
// test panel
//------------------------------------------------------------------
PANEL* GSTNet_panel =
{
digits(25,25,4,*,1,sResult);
flags = VISIBLE;
}

function main()
{
level_load("");
wait(1);
on_h=http;
}




smile