Fix build bustage when BuildXWinMultiWindow is NO.

This commit is contained in:
Harold L Hunt II 2004-03-02 05:48:28 +00:00
parent 7a7cda621d
commit 474721bda9
2 changed files with 3 additions and 4 deletions

View file

@ -39,9 +39,7 @@
#include <windows.h>
#include "winprefs.h"
#ifdef XWIN_MULTIWINDOW
#include "winmultiwindowclass.h"
#endif
/* Where will the custom menu commands start counting from? */
#define STARTMENUID WM_USER
@ -494,7 +492,6 @@ winOverrideDefaultIcon()
}
#ifdef XWIN_MULTIWINDOW
/*
* Check for a match of the window class to one specified in the
* ICONS{} section in the prefs file, and load the icon from a file
@ -560,7 +557,6 @@ winOverrideIcon (unsigned long longWin)
return 0;
}
#endif
/*

View file

@ -1,3 +1,5 @@
#if !defined(WINPREFS_H)
#define WINPREFS_H
/*
* Copyright (C) 1994-2000 The XFree86 Project, Inc. All Rights Reserved.
*
@ -147,3 +149,4 @@ winOverrideIcon (unsigned long longpWin);
unsigned long
winOverrideDefaultIcon(void);
#endif