Prof A Olowofoyeku (The African Chief) wrote:
`FARPROC' it not a standard C name. I suppose it's defined in some system header as something like:
int (far *) ()
or
int (far *) (...)
It is described as a pointer. This is how it is defined: #define WINAPI __stdcall typedef int (WINAPI *FARPROC)();
Basically my first guess. (I thought `far' was necessary since it's called `FARPROC', but apparently the naming is only a remnant for 16 bit times. And I didn't think of `__stdcall'.)
Frank