Forward EnumDependentServicesA/W to services.exe.
[reactos.git] / reactos / include / wine / richedit.h
1 /*
2 * Copyright (C) 2000 Jean-Claude Batista
3 * Copyright (C) 2002 Andriy Palamarchuk
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 #include_next <richedit.h>
21
22 #ifndef __WINE_RICHEDIT_H
23 #define __WINE_RICHEDIT_H
24
25 #include "pshpack4.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 #ifndef _RICHEDIT_VER
32 #define _RICHEDIT_VER 0x0210
33 #endif /* _RICHEDIT_VER */
34
35 #define cchTextLimitDefault 0x7fff
36
37 #define RICHEDIT_CLASS20A "RichEdit20A"
38 #if defined(__GNUC__)
39 # define RICHEDIT_CLASS20W (const WCHAR []){ 'R','i','c','h','E','d','i','t','2','0','W',0 }
40 #elif defined(_MSC_VER)
41 # define RICHEDIT_CLASS20W L"RichEdit20W"
42 #else
43 static const WCHAR RICHEDIT_CLASS20W[] = { 'R','i','c','h','E','d','i','t','2','0','W',0 };
44 #endif
45 #define RICHEDIT_CLASS10A "RICHEDIT"
46
47 #ifdef __cplusplus
48 }
49 #endif
50
51 #include "poppack.h"
52 #endif /* __WINE_RICHEDIT_H */