engine_close ()

Closes the engine (acknex.dll).

Remarks:

Example:

#define WIN32_LEAN_AND_MEAN		
#include <windows.h>
#include <stdlib.h>

#include "adll.h"

int APIENTRY WinMain(HINSTANCE hInstance,	// application instance handle
                     HINSTANCE hPrevInstance, // always zero
                     LPTSTR    lpCmdLine,	// application command line
                     int       nCmdShow)	// window flags
{
	engine_open("arena.wmb");
	while (engine_frame()); 
	engine_close();
	return 0;
}
                

See also:

engine_open, engine_status

► latest version online