Пример #1
0
/* Load the body/propulsion IMDs stats */
static bool bufferSBPIMDLoad(const char *pBuffer, UDWORD size, void **ppData)
{
	if (!loadBodyPropulsionIMDs(pBuffer, size))
	{
		return false;
	}

	//not interested in this value
	*ppData = NULL;
	return true;
}
Пример #2
0
/* Load the body/propulsion IMDs stats */
static bool bufferSBPIMDLoad(const char *fileName, void **ppData)
{
	if (!loadBodyPropulsionIMDs(fileName))
	{
		return false;
	}

	//not interested in this value
	*ppData = NULL;
	return true;
}