Hi, I'm unsure why I'm getting a 'Number of parameters mismatch' for the following code (SDK):
I'm new to C. Anyone know whats going on?
int a=12;
int AddIn_main(int isAppli, unsigned short OptionNum)
{
unsigned int key;
Bdisp_AllClr_DDVRAM();
locate(1,4);
Print((unsigned char*)"%d", a);
while(1){
GetKey(&key);
}
return 1;
}
Edited by GodOfCows, 06 April 2018 - 01:40 AM.



