]>
Commit | Line | Data |
---|---|---|
28f5082b VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/mslu.h | |
3 | // Purpose: Fixes for bugs in MSLU | |
4 | // Author: Vaclav Slavik | |
5 | // Modified by: | |
6 | // Created: 2002/02/17 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2002 Vaclav Slavik | |
65571936 | 9 | // Licence: wxWindows licence |
28f5082b VS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_MSLU_H_ | |
13 | #define _WX_MSLU_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | #include "wx/utils.h" | |
17 | #include "wx/wxchar.h" | |
18 | ||
19 | #if !wxUSE_UNICODE_MSLU | |
20 | inline bool wxUsingUnicowsDll() { return FALSE; } | |
21 | #else | |
22 | ||
23 | // Returns true if we are running under Unicode emulation in Win9x environment. | |
24 | // Workaround hacks take effect only if this condition is met | |
25 | inline bool wxUsingUnicowsDll() | |
26 | { | |
27 | return (wxGetOsVersion() == wxWIN95); | |
28 | } | |
29 | ||
30 | //------------------------------------------------------------------------ | |
31 | // Wrongly implemented functions from unicows.dll | |
32 | //------------------------------------------------------------------------ | |
33 | ||
34 | #if wxUSE_GUI | |
35 | ||
5489a643 VS |
36 | WXDLLEXPORT int wxMSLU_DrawStateW(WXHDC dc, WXHBRUSH br, WXFARPROC outputFunc, |
37 | WXLPARAM lData, WXWPARAM wData, | |
38 | int x, int y, int cx, int cy, | |
39 | unsigned int flags); | |
28f5082b VS |
40 | #define DrawStateW(dc, br, func, ld, wd, x, y, cx, cy, flags) \ |
41 | wxMSLU_DrawStateW((WXHDC)dc,(WXHBRUSH)br,(WXFARPROC)func, \ | |
42 | ld, wd, x, y, cx, cy, flags) | |
43 | ||
5489a643 | 44 | WXDLLEXPORT int wxMSLU_GetOpenFileNameW(void *ofn); |
28f5082b VS |
45 | #define GetOpenFileNameW(ofn) wxMSLU_GetOpenFileNameW((void*)ofn) |
46 | ||
5489a643 | 47 | WXDLLEXPORT int wxMSLU_GetSaveFileNameW(void *ofn); |
28f5082b VS |
48 | #define GetSaveFileNameW(ofn) wxMSLU_GetSaveFileNameW((void*)ofn) |
49 | ||
50 | #endif | |
51 | ||
52 | //------------------------------------------------------------------------ | |
53 | // Missing libc file manipulation functions in Win9x | |
54 | //------------------------------------------------------------------------ | |
55 | ||
56 | WXDLLEXPORT int wxMSLU__trename(const wxChar *oldname, const wxChar *newname); | |
57 | WXDLLEXPORT int wxMSLU__tremove(const wxChar *name); | |
58 | ||
59 | #if defined( __VISUALC__ ) \ | |
60 | || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \ | |
a3bb1d14 CE |
61 | || ( defined(__MWERKS__) && defined(__WXMSW__) ) \ |
62 | || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) ) | |
28f5082b VS |
63 | WXDLLEXPORT int wxMSLU__wopen(const wxChar *name, int flags, int mode); |
64 | WXDLLEXPORT int wxMSLU__waccess(const wxChar *name, int mode); | |
65 | WXDLLEXPORT int wxMSLU__wmkdir(const wxChar *name); | |
66 | WXDLLEXPORT int wxMSLU__wrmdir(const wxChar *name); | |
67 | WXDLLEXPORT int wxMSLU__wstat(const wxChar *name, struct _stat *buffer); | |
68 | #endif | |
69 | ||
70 | #endif // wxUSE_UNICODE_MSLU | |
71 | ||
72 | #endif // _WX_MSLU_H_ |