Re: clanLIB
m done with all those steps in that file m everything f9 till now
bt help me out
#include <ClanLib/core.h>
#include <ClanLib/display.h>
#include <ClanLib/gl.h>
#include <ClanLib/application.h>
class cClanLibApp : public CL_ClanApplication {
public:
cClanLibApp();
~cClanLibApp();
virtual int main(int, char **)
{
CL_SetupCore setup_core;
CL_SetupDisplay setup_display;
CL_SetupGL setup_gl;
->CL_SetupSound setup_sound;
return 0;
}
}app;
m getting error at the line which is bold nd pointed with n arrow nd the error is
error C2065: 'CL_SetupSound' : undeclared identifier
error C2146: syntax error : missing ';' before identifier 'setup_sound'
error C2065: 'setup_sound' : undeclared identifier
plz help me out
|