Initial source commit
This commit is contained in:
commit
f1384c11ee
335 changed files with 52715 additions and 0 deletions
31
minorGems/util/printUtils.h
Normal file
31
minorGems/util/printUtils.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Modification History
|
||||
*
|
||||
* 2002-April-8 Jason Rohrer
|
||||
* Created.
|
||||
*/
|
||||
|
||||
#include "minorGems/common.h"
|
||||
|
||||
|
||||
|
||||
#ifndef PRINT_UTILS_INCLUDED
|
||||
#define PRINT_UTILS_INCLUDED
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* A thread-safe version of printf.
|
||||
*
|
||||
* Note that printf is already thread-safe on certain platforms,
|
||||
* but does not seem to be thread-safe on Win32.
|
||||
*
|
||||
* @param inFormatString the format string to use.
|
||||
* @param ... a variable argument list, with the same usage
|
||||
* pattern as printf.
|
||||
*/
|
||||
int threadPrintF( const char* inFormatString, ... );
|
||||
|
||||
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue