win32_gui: gettting x64 build to work

This commit is contained in:
Alex Kompel
2015-04-14 08:54:44 -07:00
parent 3c6f01f022
commit 62617092b5
13 changed files with 144 additions and 109 deletions

View File

@@ -157,6 +157,9 @@ init_nhwindows(int* argcp, char** argv)
*/
void mswin_init_nhwindows(int* argc, char** argv)
{
UNREFERENCED_PARAMETER(argc);
UNREFERENCED_PARAMETER(argv);
logDebug("mswin_init_nhwindows()\n");
#ifdef _DEBUG
@@ -985,7 +988,7 @@ void mswin_putstr_ex(winid wid, int attr, const char *text, int app)
ZeroMemory(&data, sizeof(data));
data.attr = attr;
data.text = text;
data.append = app;
data.append = !!app;
SendMessage(
GetNHApp()->windowlist[wid].win,
WM_MSNH_COMMAND, (WPARAM)MSNH_MSG_PUTSTR, (LPARAM)&data );
@@ -1969,6 +1972,8 @@ char *mswin_getmsghistory(BOOLEAN_P init)
void mswin_putmsghistory(const char * msg, BOOLEAN_P restoring)
{
UNREFERENCED_PARAMETER(restoring);
BOOL save_sound_opt;
if (!msg) return; /* end of message history restore */