...or do you need something like this:
Code:
#include <acknex.h>

void * void_pointer(); // create a pointer to a 'void'

void test_function()
{
	printf("test");
}

void main()
{
	void_pointer = test_function; // the pointer should point to 'test_function'
	void_pointer(); // call the void the pointer points to
}



POTATO-MAN saves the day! - Random