PrintString(string)
メッセージをログファイルに記録する。
void PrintString( string sString );
Parameters
sString
記録をとるメッセージ
Description
文字列メッセージ(sString)をログファイルに書く
Version
1.22
Example
// 様々なテストの基礎をカバーする、サンプルデバッグコール void debug(string sMessage) { SendMessageToPC(GetFirstPC(), sMessage); SendMessageToAllDMs(sMessage); PrintString(sMessage); }
See Also
functions: | MyPrintString | PrintFloat | PrintInteger | PrintVector | SendMessageToAllDMs | SendMessageToPC |
categories: | Debug Functions | Miscellaneous Functions | String Functions |
author: Iskander Merriman, editor: Jeff Lindsey, JP Team: weed
Send comments on this topic.