Rev 1 | Rev 14 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1 | Rev 11 | ||
|---|---|---|---|
| Line 70... | Line 70... | ||
| 70 | interlocutor_t *Interlocutor_FindByWindowHandle (HWND window_handle); |
70 | interlocutor_t *Interlocutor_FindByWindowHandle (HWND window_handle); |
| 71 | void Interlocutor_Chat (interlocutor_t *interlocutor, const wchar_t *sender, bool is_localsender, const wchar_t *fmt, ...); |
71 | void Interlocutor_Chat (interlocutor_t *interlocutor, const wchar_t *sender, bool is_localsender, const wchar_t *fmt, ...); |
| 72 | void Interlocutor_Notify (interlocutor_t *interlocutor, const wchar_t *fmt, ...); |
72 | void Interlocutor_Notify (interlocutor_t *interlocutor, const wchar_t *fmt, ...); |
| 73 | 73 | ||
| 74 | // localizedtexts.cpp function prototypes |
74 | // localizedtexts.cpp function prototypes |
| 75 | bool LocalizedTexts_Init (const wchar_t * |
75 | bool LocalizedTexts_Init (const wchar_t *fmt, ...); |
| 76 | void LocalizedTexts_Shutdown (void); |
76 | void LocalizedTexts_Shutdown (void); |
| 77 | wchar_t *LocalizedTexts_GetLocalizedTextFor (wchar_t *id_string); |
77 | wchar_t *LocalizedTexts_GetLocalizedTextFor (wchar_t *id_string); |
| 78 | 78 | ||
| 79 | // move.cpp function prototypes |
79 | // move.cpp function prototypes |
| 80 | void Move_SetSlot (boardmove_t *move, int line, int column, int color, int part_type); |
80 | void Move_SetSlot (boardmove_t *move, int line, int column, int color, int part_type); |
| Line 181... | Line 181... | ||
| 181 | 181 | ||
| 182 | // theme.cpp function prototypes |
182 | // theme.cpp function prototypes |
| 183 | bool Themes_Init (void); |
183 | bool Themes_Init (void); |
| 184 | void Themes_Shutdown (void); |
184 | void Themes_Shutdown (void); |
| 185 | void Theme_Load (theme_t *theme, bool want_all); |
185 | void Theme_Load (theme_t *theme, bool want_all); |
| 186 | void Background_LoadImage (backgroundsprite_t *bg, const wchar_t * |
186 | void Background_LoadImage (backgroundsprite_t *bg, const wchar_t *fmt, ...); |
| 187 | 187 | ||
| 188 | // util.cpp function prototypes |
188 | // util.cpp function prototypes |
| 189 | const wchar_t *GetDirectoryPath (const wchar_t *pathname, wchar_t *path); |
189 | const wchar_t *GetDirectoryPath (const wchar_t *pathname, wchar_t *path); |
| 190 | void CenterWindow (HWND hWnd, HWND hParentWnd); |
190 | void CenterWindow (HWND hWnd, HWND hParentWnd); |
| 191 | void HintWindow (HWND hWnd); |
191 | void HintWindow (HWND hWnd); |
| Line 205... | Line 205... | ||
| 205 | int MonthStringToNumber (wchar_t *month_string); |
205 | int MonthStringToNumber (wchar_t *month_string); |
| 206 | bool GetImageSize (const wchar_t *imagefile_pathname, int *width, int *height); |
206 | bool GetImageSize (const wchar_t *imagefile_pathname, int *width, int *height); |
| 207 | void Debug_Init (const wchar_t *logfile_name); |
207 | void Debug_Init (const wchar_t *logfile_name); |
| 208 | void Debug_Log (const wchar_t *fmt, ...); |
208 | void Debug_Log (const wchar_t *fmt, ...); |
| 209 | const wchar_t *GetLastNetworkError (void); |
209 | const wchar_t *GetLastNetworkError (void); |
| - | 210 | HICON W32LoadIcon (const wchar_t *fmt, ...); |
|
| - | 211 | HBITMAP W32LoadImage (const wchar_t *fmt, ...); |
|
| 210 | 212 | ||
| 211 | // dialog_xxx.cpp and window_xxx.cpp function prototypes |
213 | // dialog_xxx.cpp and window_xxx.cpp function prototypes |
| 212 | void DialogBox_About (void); void DialogBox_About_Validated (void); |
214 | void DialogBox_About (void); void DialogBox_About_Validated (void); |
| 213 | void DialogBox_Challenge (int challenge_index); void DialogBox_Challenge_Validated (void); |
215 | void DialogBox_Challenge (int challenge_index); void DialogBox_Challenge_Validated (void); |
| 214 | void DialogBox_ChangeAppearance (void); void DialogBox_ChangeAppearance_Validated (void); |
216 | void DialogBox_ChangeAppearance (void); void DialogBox_ChangeAppearance_Validated (void); |