mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-14 05:21:25 -07:00
ctrl: break debug string events apart if needed; enforce size cap on serialized ctrl events
This commit is contained in:
@@ -2297,6 +2297,14 @@ debug_string_tests(void)
|
||||
{
|
||||
OutputDebugStringA("Hello, World!\n");
|
||||
}
|
||||
char message[65409+1];
|
||||
memset(&message[0], '=', sizeof(message));
|
||||
for(int i = 1; i < sizeof(message); i += 128)
|
||||
{
|
||||
message[i] = '\n';
|
||||
}
|
||||
message[sizeof(message) - 1] = 0;
|
||||
OutputDebugStringA(message);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user