mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-28 07:29:09 +00:00
Fixed build error with missing function prototype in the SDL_test_harness.h header
This commit is contained in:
parent
c2837ef634
commit
c1e292fcf8
2 changed files with 12 additions and 1 deletions
|
@ -98,6 +98,17 @@ typedef struct SDLTest_TestSuiteReference {
|
|||
} SDLTest_TestSuiteReference;
|
||||
|
||||
|
||||
/**
|
||||
* \brief Generates a random run seed string for the harness. The generated seed will contain alphanumeric characters (0-9A-Z).
|
||||
*
|
||||
* Note: The returned string needs to be deallocated by the caller.
|
||||
*
|
||||
* \param length The length of the seed string to generate
|
||||
*
|
||||
* \returns The generated seed string
|
||||
*/
|
||||
char *SDLTest_GenerateRunSeed(const int length);
|
||||
|
||||
/**
|
||||
* \brief Execute a test suite using the given run seed and execution key.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue