Subversion Repositories Games.Chess Giants

Rev

Rev 185 | Rev 193 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 185 Rev 186
Line 235... Line 235...
235
wchar_t *ReachBeginningOfNextLine (wchar_t *string, wchar_t *current_pos);
235
wchar_t *ReachBeginningOfNextLine (wchar_t *string, wchar_t *current_pos);
236
wchar_t *ReadACompleteLine (wchar_t *destination_line, int max_length, wchar_t *source_buffer);
236
wchar_t *ReadACompleteLine (wchar_t *destination_line, int max_length, wchar_t *source_buffer);
237
wchar_t *wcsgets (wchar_t *destination_line, int max_length, wchar_t *source_buffer);
237
wchar_t *wcsgets (wchar_t *destination_line, int max_length, wchar_t *source_buffer);
238
wchar_t *wcsistr (const wchar_t *haystack, const wchar_t *needle);
238
wchar_t *wcsistr (const wchar_t *haystack, const wchar_t *needle);
239
void ConvertCRLFsToSingleSpaces (wchar_t *multiline_string);
239
void ConvertCRLFsToSingleSpaces (wchar_t *multiline_string);
240
void ConvertTo7BitASCII (char *dest, size_t dest_size_in_bytes, wchar_t *source);
240
size_t ConvertTo7BitASCII (char *dest, size_t dest_size_in_bytes, wchar_t *source);
241
void ConvertToWideChar (wchar_t *dest, size_t dest_size_in_wchars, char *source);
241
size_t ConvertToWideChar (wchar_t *dest, size_t dest_size_in_wchars, char *source);
242
void MinutesToWideCharString (wchar_t *dest, size_t dest_size_in_wchars, int minutes);
242
void MinutesToWideCharString (wchar_t *dest, size_t dest_size_in_wchars, int minutes);
243
void SecondsToWideCharString (wchar_t *dest, size_t dest_size_in_wchars, int seconds);
243
void SecondsToWideCharString (wchar_t *dest, size_t dest_size_in_wchars, int seconds);
244
int MonthStringToNumber (wchar_t *month_string);
244
int MonthStringToNumber (wchar_t *month_string);
245
bool GetImageSize (const wchar_t *imagefile_pathname, int *width, int *height);
245
bool GetImageSize (const wchar_t *imagefile_pathname, int *width, int *height);
-
 
246
void GenerateVersionNumber (char *out_string, size_t outstring_maxsize);
246
void Debug_Init (const wchar_t *logfile_name);
247
void Debug_Init (const wchar_t *logfile_name);
247
void Debug_Log (const wchar_t *fmt, ...);
248
void Debug_Log (const wchar_t *fmt, ...);
248
void Debug_LogMove (boardmove_t *move, const wchar_t *fmt, ...);
249
void Debug_LogMove (boardmove_t *move, const wchar_t *fmt, ...);
249
bool Debug_SendLogToAuthor (char *reason, bool should_include_description);
250
bool Debug_SendLogToAuthor (char *reason, bool should_include_description);
250
int RecvWithTimeout (int socket_id, float timeout_in_seconds, char *outbuf, size_t outbuf_size, int flags);
251
int RecvWithTimeout (int socket_id, float timeout_in_seconds, char *outbuf, size_t outbuf_size, int flags);