(svn r6089) -Backport r6088: added -s (source) and -d (destination) to strgen (Darkvater)

This commit is contained in:
truelight
2006-08-24 12:08:25 +00:00
parent d14ac4478d
commit 76bcaba601
6 changed files with 170 additions and 118 deletions

21
win32.c
View File

@@ -917,27 +917,6 @@ void DeterminePaths(void)
CreateDirectory(_path.heightmap_dir, NULL);
}
int CDECL snprintf(char *str, size_t size, const char *format, ...)
{
va_list ap;
int ret;
va_start(ap, format);
ret = vsnprintf(str, size, format, ap);
va_end(ap);
return ret;
}
#ifdef _MSC_VER
int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap)
{
int ret;
ret = _vsnprintf(str, size, format, ap);
if (ret < 0) str[size - 1] = '\0';
return ret;
}
#endif
/**
* Insert a chunk of text from the clipboard onto the textbuffer. Get TEXT clipboard
* and append this up to the maximum length (either absolute or screenlength). If maxlength