1/////////////////////////////////////////////////////////////////////////////
2// Name:        wx/msw/mslu.h
3// Purpose:     MSLU-related declarations
4// Author:      Vaclav Slavik
5// Modified by: Vadim Zeitlin to move out various functions to other files
6//              to fix header inter-dependencies
7// Created:     2002/02/17
8// RCS-ID:      $Id: mslu.h 42462 2006-10-26 19:06:51Z VZ $
9// Copyright:   (c) 2002 Vaclav Slavik
10// Licence:     wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_MSLU_H_
14#define _WX_MSLU_H_
15
16#include "wx/defs.h"
17
18// Returns true if we are running under Unicode emulation in Win9x environment.
19// Workaround hacks take effect only if this condition is met
20// (NB: this function is needed even if !wxUSE_UNICODE_MSLU)
21WXDLLIMPEXP_BASE bool wxUsingUnicowsDll();
22
23#endif // _WX_MSLU_H_
24