server: Don't clip update regions to the desktop window.
[wine.git] / include / wfext.h
blobe28c9978be825bfe15f854b043ee030e565cdfbb
1 /*
2 * Copyright (C) 2007 Francois Gouget
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #ifndef __WINE_WFEXT_H
19 #define __WINE_WFEXT_H
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 #define MENU_TEXT_LEN 40
27 #define FMMENU_FIRST 1
28 #define FMMENU_LAST 99
30 #define FMEVENT_LOAD 100
31 #define FMEVENT_UNLOAD 101
32 #define FMEVENT_INITMENU 102
33 #define FMEVENT_USER_REFRESH 103
34 #define FMEVENT_SELCHANGE 104
35 #define FMEVENT_TOOLBARLOAD 105
36 #define FMEVENT_HELPSTRING 106
37 #define FMEVENT_HELPMENUITEM 107
39 #define FMFOCUS_DIR 1
40 #define FMFOCUS_TREE 2
41 #define FMFOCUS_DRIVES 3
42 #define FMFOCUS_SEARCH 4
44 #define FM_GETFOCUS (WM_USER + 0x0200)
45 #define FM_GETDRIVEINFOA (WM_USER + 0x0201)
46 #define FM_GETSELCOUNT (WM_USER + 0x0202)
47 #define FM_GETSELCOUNTLFN (WM_USER + 0x0203)
48 #define FM_GETFILESELA (WM_USER + 0x0204)
49 #define FM_GETFILESELLFNA (WM_USER + 0x0205)
50 #define FM_REFRESH_WINDOWS (WM_USER + 0x0206)
51 #define FM_RELOAD_EXTENSIONS (WM_USER + 0x0207)
52 #define FM_GETDRIVEINFOW (WM_USER + 0x0211)
53 #define FM_GETFILESELW (WM_USER + 0x0214)
54 #define FM_GETFILESELLFNW (WM_USER + 0x0215)
56 #define FM_GETDRIVEINFO WINELIB_NAME_AW(FM_GETDRIVEINFO)
57 #define FM_GETFILESEL WINELIB_NAME_AW(FM_GETFILESEL)
58 #define FM_GETFILESELLFN WINELIB_NAME_AW(FM_GETFILESELLFN)
60 LONG WINAPI FMExtensionProc(HWND,WORD,LONG);
61 LONG WINAPI FMExtensionProcW(HWND,WORD,LONG);
63 #ifdef __cplusplus
65 #endif
67 #endif