mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
protect with ifdef
This commit is contained in:
parent
2c6412448b
commit
898d0bf9ed
2 changed files with 7 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
|
||||
#ifdef XWFEATURE_SEARCHLIMIT
|
||||
|
||||
#include "cehntlim.h"
|
||||
|
||||
|
@ -90,3 +90,5 @@ HintLimitsDlg( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam )
|
|||
|
||||
return FALSE;
|
||||
} /* HintLimitsDlg */
|
||||
|
||||
#endif /* XWFEATURE_SEARCHLIMIT */
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#ifndef _CEHNTLIM_H_
|
||||
#define _CEHNTLIM_H_
|
||||
|
||||
#ifdef XWFEATURE_SEARCHLIMIT
|
||||
|
||||
#include "cemain.h"
|
||||
|
||||
typedef struct HintLimitsState {
|
||||
|
@ -31,4 +33,6 @@ typedef struct HintLimitsState {
|
|||
|
||||
LRESULT CALLBACK HintLimitsDlg(HWND, UINT, WPARAM, LPARAM);
|
||||
|
||||
#endif /* XWFEATURE_SEARCHLIMIT */
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue