void sgFreeKernel()

 

Description:

Finishes the work with the library correctly. You must call this function only once.

You must begin the work with sgCore by calling the sgInitKernel() function

 

Arguments:

No arguments.

 

Returned value:

No values.

 

 

Example (the shortest sgCore library using program)

 

int main(int argc, char* argv[])

{

  sgInitKernel();

  sgFreeKernel();

 return 0;

}

 

See also:

sgInitKernel()