mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-09 05:13:36 +08:00
added win32 launcher program. also changed VC++ dsp and dsw
files to binary form so \r\n aren't converted. added icons to client and server apps on win32.
This commit is contained in:
@@ -91,8 +91,9 @@ CStringUtil::vformat(const char* fmt, va_list args)
|
||||
length.push_back(1);
|
||||
for (int i = 0; i < maxIndex; ++i) {
|
||||
const char* arg = va_arg(args, const char*);
|
||||
size_t len = strlen(arg);
|
||||
value.push_back(arg);
|
||||
length.push_back(strlen(arg));
|
||||
length.push_back(len);
|
||||
}
|
||||
|
||||
// compute final length
|
||||
|
||||
Reference in New Issue
Block a user