Which one?

The declaration is in the vtable struct:
Code:
long __stdcall GetHeartCoherence (void* This);



The This pointer is added because the manual says:
Quote:
Note that each of the methods has an additional parameter called "This". You have to pass the This pointer parameter explicitly in C, but it can be passed automatically in lite-C. Any additional parameters come after This, as above.


So I guess when I call a method with a void parameter, I just call and declare it like I do in the above post...?