Constants

reapi_rechecker.inc

reapi 5.26.0.338

ResourceType

ResourceType
enum ResourceType
{
	RES_TYPE_NONE = 0,
	RES_TYPE_EXISTS,    // to comparison with the specified hash value
	RES_TYPE_MISSING,   // check it missing file on client
	RES_TYPE_IGNORE,    // ignore the specified hash value
	RES_TYPE_HASH_ANY,  // any file with any the hash value
};

ReCheckerFunc

ReCheckerFunc
enum ReCheckerFunc
{
	/*
	* Description:   -
	* Params:        (const client, const filename[], const cmd[], const ResourceType:type, const responseHash, bool:isBreak)
	*/
	RC_FileConsistencyProcess = BEGIN_FUNC_REGION(rechecker),

	/*
	* Description:   -
	* Params:        (const client)
	*/
	RC_FileConsistencyFinal,

	/*
	* Description:   -
	* Params:        (const client, const filename[], const cmd[], const responseHash)
	*/
	RC_CmdExec,

	// [...]
};