what is SCAPI version for IP2015.
Hi
We have SCAPI file and that file showing below code.But i read some where it should return value 1 or 2 as APIVersion .But we are receiving the 131072.
SCAPI Code:
/* API version */
#define SCAPI_MIN 0
#define SCAPI_MAJ 2
#define SCAPI_VERSION ((long) SCAPI_MIN | ((long) SCAPI_MAJ) << 16)
#define MAXMODULE 50
Driver Code:
ISCAPI long APIVersion()
{
printStringToFile((char *)"GET API VERSION");
// return API interface version
return SCAPI_VERSION;
}
Thanks,
Hardik