Kawe Mazidjatari b3a68ed095 Add EABase, EAThread and DirtySDK to R5sdk
DirtySDK (EA's Dirty Sockets library) will be used for the LiveAPI implementation, and depends on: EABase, EAThread.
2024-04-05 18:29:03 +02:00

52 lines
1.6 KiB
C

/*H********************************************************************************/
/*!
\File testermodulespchost.c
\Description
PC specific module startup.
\Copyright
Copyright (c) 2005 Electronic Arts Inc.
\Version 04/11/2005 (jfrank) First Version
*/
/********************************************************************************H*/
/*** Include files ****************************************************************/
#include "DirtySDK/platform.h"
#include "testermodules.h"
/*** Defines **********************************************************************/
/*** Type Definitions *************************************************************/
/*** Variables ********************************************************************/
/*** Private Functions ************************************************************/
/*** Public functions *************************************************************/
/*F********************************************************************************/
/*!
\Function TesterModulesRegisterPlatformCommands
\Description
Register all PC-specific modules
\Input *pState - module state
\Output 0=success, error code otherwise
\Version 04/11/2005 (jfrank)
*/
/********************************************************************************F*/
int32_t TesterModulesRegisterPlatformCommands(TesterModulesT *pState)
{
// tester2 pc-specific modules
TesterModulesRegister(pState, "secure",&CmdSecure);
TesterModulesRegister(pState, "voice", &CmdVoice);
return(TESTERMODULES_ERROR_NONE);
}