Hey all. Here is the declaration of my thread function:
unsigned __stdcall aquireData(void * param);
I'm not returning anything from the function, but the compiler says I should be.
What type should I be returning? From what I've read __stdcall is just letting the compiler know the calling convention, leaving unsigned as the return type? Is this unsigned int, unsigned float or unsigned char lol I have no idea.