Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
24
Src/libvp6/corelibs/include/testresults.h
Normal file
24
Src/libvp6/corelibs/include/testresults.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#if !defined(_TestResults_h)
|
||||
#define _TestResults_h
|
||||
#include <string.h>
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
typedef struct TestResults_T
|
||||
{
|
||||
char * results;
|
||||
int testResultMaxLength;
|
||||
} TestResults;
|
||||
int GetTestResults( TestResults *T ,int argc, char *argv[]);
|
||||
const char * GetTestHelp(void);
|
||||
inline void StoreTestResult(TestResults *p, char *msg)
|
||||
{
|
||||
if (p)
|
||||
{
|
||||
sprintf(&(p->results[strlen(p->results)]),"%s",msg);
|
||||
}
|
||||
}
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
#endif /* include guards */
|
Loading…
Add table
Add a link
Reference in a new issue