Subversion Repositories Games.Chess Giants

Rev

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

Rev 40 Rev 59
Line 71... Line 71...
71
interlocutor_t *Interlocutor_FindByWindowHandle (HWND window_handle);
71
interlocutor_t *Interlocutor_FindByWindowHandle (HWND window_handle);
72
void Interlocutor_Chat (interlocutor_t *interlocutor, const wchar_t *sender, bool is_localsender, const wchar_t *fmt, ...);
72
void Interlocutor_Chat (interlocutor_t *interlocutor, const wchar_t *sender, bool is_localsender, const wchar_t *fmt, ...);
73
void Interlocutor_Notify (interlocutor_t *interlocutor, const wchar_t *fmt, ...);
73
void Interlocutor_Notify (interlocutor_t *interlocutor, const wchar_t *fmt, ...);
74
 
74
 
75
// localizedtexts.cpp function prototypes
75
// localizedtexts.cpp function prototypes
76
bool LocalizedTexts_Init (const wchar_t *fmt, ...);
76
void LocalizedTexts_Init (void);
77
void LocalizedTexts_Shutdown (void);
77
void LocalizedTexts_Shutdown (void);
78
wchar_t *LocalizedTexts_GetLocalizedTextFor (wchar_t *id_string);
78
wchar_t *LocalizedTexts_GetLocalizedTextFor (wchar_t *id_string);
79
 
79
 
80
// move.cpp function prototypes
80
// move.cpp function prototypes
81
void Move_SetSlot (boardmove_t *move, int line, int column, int color, int part_type);
81
void Move_SetSlot (boardmove_t *move, int line, int column, int color, int part_type);
Line 186... Line 186...
186
void Theme_Load (theme_t *theme, bool want_all);
186
void Theme_Load (theme_t *theme, bool want_all);
187
void Background_LoadImage (backgroundsprite_t *bg, const wchar_t *fmt, ...);
187
void Background_LoadImage (backgroundsprite_t *bg, const wchar_t *fmt, ...);
188
 
188
 
189
// util.cpp function prototypes
189
// util.cpp function prototypes
190
const wchar_t *GetDirectoryPath (const wchar_t *pathname, wchar_t *path);
190
const wchar_t *GetDirectoryPath (const wchar_t *pathname, wchar_t *path);
-
 
191
void CreateOrUpdateApplicationMenu (void);
191
void CenterWindow (HWND hWnd, HWND hParentWnd);
192
void CenterWindow (HWND hWnd, HWND hParentWnd);
192
void HintWindow (HWND hWnd);
193
void HintWindow (HWND hWnd);
193
float ProcessTime (void);
194
float ProcessTime (void);
194
float WrapAngle (float angle);
195
float WrapAngle (float angle);
195
bool SafeTerminateProcess (HANDLE hProcess, unsigned int uExitCode);
196
bool SafeTerminateProcess (HANDLE hProcess, unsigned int uExitCode);