I'm new to the whole lite-c thing but not entirly dumb either as I've used c++ a bit. My question is about the shader.c that was released to the public. I downloaded a copy and included the files in my current project but when i compile and attempt to run my main script I get nonexistant/empty function s_Initshader. I contacted the programmer but havent got a response. I was wondering if anyone else was experiencing problems with this package? Here's my starter code. Very simple right now as I was wanting to simply test the shaders.
#include <acknex.h>;
#include <default.c>;
#include <s_shadeC.c>;
function main()
{
level_load("SST_LEVEL001.wmb");
wait(4);
s_initShaders();
}
Thanks in advance for any assitance you can give.