···11+#ifndef yyHEADER_H
22+#define yyHEADER_H 1
33+#define yyIN_HEADER 1
44+55+#line 6 "macro.lex.yy.h"
66+77+#line 8 "macro.lex.yy.h"
88+99+#define YY_INT_ALIGNED short int
1010+1111+/* A lexical scanner generated by flex */
1212+1313+#define FLEX_SCANNER
1414+#define YY_FLEX_MAJOR_VERSION 2
1515+#define YY_FLEX_MINOR_VERSION 5
1616+#define YY_FLEX_SUBMINOR_VERSION 37
1717+#if YY_FLEX_SUBMINOR_VERSION > 0
1818+#define FLEX_BETA
1919+#endif
2020+2121+/* First, we deal with platform-specific or compiler-specific issues. */
2222+2323+/* begin standard C headers. */
2424+#include <stdio.h>
2525+#include <string.h>
2626+#include <errno.h>
2727+#include <stdlib.h>
2828+2929+/* end standard C headers. */
3030+3131+/* flex integer type definitions */
3232+3333+#ifndef FLEXINT_H
3434+#define FLEXINT_H
3535+3636+/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
3737+3838+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
3939+4040+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
4141+ * if you want the limit (max/min) macros for int types.
4242+ */
4343+#ifndef __STDC_LIMIT_MACROS
4444+#define __STDC_LIMIT_MACROS 1
4545+#endif
4646+4747+#include <inttypes.h>
4848+typedef int8_t flex_int8_t;
4949+typedef uint8_t flex_uint8_t;
5050+typedef int16_t flex_int16_t;
5151+typedef uint16_t flex_uint16_t;
5252+typedef int32_t flex_int32_t;
5353+typedef uint32_t flex_uint32_t;
5454+#else
5555+typedef signed char flex_int8_t;
5656+typedef short int flex_int16_t;
5757+typedef int flex_int32_t;
5858+typedef unsigned char flex_uint8_t;
5959+typedef unsigned short int flex_uint16_t;
6060+typedef unsigned int flex_uint32_t;
6161+6262+/* Limits of integral types. */
6363+#ifndef INT8_MIN
6464+#define INT8_MIN (-128)
6565+#endif
6666+#ifndef INT16_MIN
6767+#define INT16_MIN (-32767-1)
6868+#endif
6969+#ifndef INT32_MIN
7070+#define INT32_MIN (-2147483647-1)
7171+#endif
7272+#ifndef INT8_MAX
7373+#define INT8_MAX (127)
7474+#endif
7575+#ifndef INT16_MAX
7676+#define INT16_MAX (32767)
7777+#endif
7878+#ifndef INT32_MAX
7979+#define INT32_MAX (2147483647)
8080+#endif
8181+#ifndef UINT8_MAX
8282+#define UINT8_MAX (255U)
8383+#endif
8484+#ifndef UINT16_MAX
8585+#define UINT16_MAX (65535U)
8686+#endif
8787+#ifndef UINT32_MAX
8888+#define UINT32_MAX (4294967295U)
8989+#endif
9090+9191+#endif /* ! C99 */
9292+9393+#endif /* ! FLEXINT_H */
9494+9595+#ifdef __cplusplus
9696+9797+/* The "const" storage-class-modifier is valid. */
9898+#define YY_USE_CONST
9999+100100+#else /* ! __cplusplus */
101101+102102+/* C99 requires __STDC__ to be defined as 1. */
103103+#if defined (__STDC__)
104104+105105+#define YY_USE_CONST
106106+107107+#endif /* defined (__STDC__) */
108108+#endif /* ! __cplusplus */
109109+110110+#ifdef YY_USE_CONST
111111+#define yyconst const
112112+#else
113113+#define yyconst
114114+#endif
115115+116116+/* Size of default input buffer. */
117117+#ifndef YY_BUF_SIZE
118118+#define YY_BUF_SIZE 16384
119119+#endif
120120+121121+#ifndef YY_TYPEDEF_YY_BUFFER_STATE
122122+#define YY_TYPEDEF_YY_BUFFER_STATE
123123+typedef struct yy_buffer_state *YY_BUFFER_STATE;
124124+#endif
125125+126126+#ifndef YY_TYPEDEF_YY_SIZE_T
127127+#define YY_TYPEDEF_YY_SIZE_T
128128+typedef size_t yy_size_t;
129129+#endif
130130+131131+extern yy_size_t yyleng;
132132+133133+extern FILE *yyin, *yyout;
134134+135135+#ifndef YY_STRUCT_YY_BUFFER_STATE
136136+#define YY_STRUCT_YY_BUFFER_STATE
137137+struct yy_buffer_state
138138+ {
139139+ FILE *yy_input_file;
140140+141141+ char *yy_ch_buf; /* input buffer */
142142+ char *yy_buf_pos; /* current position in input buffer */
143143+144144+ /* Size of input buffer in bytes, not including room for EOB
145145+ * characters.
146146+ */
147147+ yy_size_t yy_buf_size;
148148+149149+ /* Number of characters read into yy_ch_buf, not including EOB
150150+ * characters.
151151+ */
152152+ yy_size_t yy_n_chars;
153153+154154+ /* Whether we "own" the buffer - i.e., we know we created it,
155155+ * and can realloc() it to grow it, and should free() it to
156156+ * delete it.
157157+ */
158158+ int yy_is_our_buffer;
159159+160160+ /* Whether this is an "interactive" input source; if so, and
161161+ * if we're using stdio for input, then we want to use getc()
162162+ * instead of fread(), to make sure we stop fetching input after
163163+ * each newline.
164164+ */
165165+ int yy_is_interactive;
166166+167167+ /* Whether we're considered to be at the beginning of a line.
168168+ * If so, '^' rules will be active on the next match, otherwise
169169+ * not.
170170+ */
171171+ int yy_at_bol;
172172+173173+ int yy_bs_lineno; /**< The line count. */
174174+ int yy_bs_column; /**< The column count. */
175175+176176+ /* Whether to try to fill the input buffer when we reach the
177177+ * end of it.
178178+ */
179179+ int yy_fill_buffer;
180180+181181+ int yy_buffer_status;
182182+183183+ };
184184+#endif /* !YY_STRUCT_YY_BUFFER_STATE */
185185+186186+void yyrestart (FILE *input_file );
187187+void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
188188+YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
189189+void yy_delete_buffer (YY_BUFFER_STATE b );
190190+void yy_flush_buffer (YY_BUFFER_STATE b );
191191+void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
192192+void yypop_buffer_state (void );
193193+194194+YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
195195+YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
196196+YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len );
197197+198198+void *yyalloc (yy_size_t );
199199+void *yyrealloc (void *,yy_size_t );
200200+void yyfree (void * );
201201+202202+/* Begin user sect3 */
203203+204204+#define yywrap() 1
205205+#define YY_SKIP_YYWRAP
206206+207207+extern int yylineno;
208208+209209+extern char *yytext;
210210+#define yytext_ptr yytext
211211+212212+#ifdef YY_HEADER_EXPORT_START_CONDITIONS
213213+#define INITIAL 0
214214+#define quote 1
215215+216216+#endif
217217+218218+#ifndef YY_NO_UNISTD_H
219219+/* Special case for "unistd.h", since it is non-ANSI. We include it way
220220+ * down here because we want the user's section 1 to have been scanned first.
221221+ * The user has a chance to override it with an option.
222222+ */
223223+#include <unistd.h>
224224+#endif
225225+226226+#ifndef YY_EXTRA_TYPE
227227+#define YY_EXTRA_TYPE void *
228228+#endif
229229+230230+/* Accessor methods to globals.
231231+ These are made visible to non-reentrant scanners for convenience. */
232232+233233+int yylex_destroy (void );
234234+235235+int yyget_debug (void );
236236+237237+void yyset_debug (int debug_flag );
238238+239239+YY_EXTRA_TYPE yyget_extra (void );
240240+241241+void yyset_extra (YY_EXTRA_TYPE user_defined );
242242+243243+FILE *yyget_in (void );
244244+245245+void yyset_in (FILE * in_str );
246246+247247+FILE *yyget_out (void );
248248+249249+void yyset_out (FILE * out_str );
250250+251251+yy_size_t yyget_leng (void );
252252+253253+char *yyget_text (void );
254254+255255+int yyget_lineno (void );
256256+257257+void yyset_lineno (int line_number );
258258+259259+/* Macros after this point can all be overridden by user definitions in
260260+ * section 1.
261261+ */
262262+263263+#ifndef YY_SKIP_YYWRAP
264264+#ifdef __cplusplus
265265+extern "C" int yywrap (void );
266266+#else
267267+extern int yywrap (void );
268268+#endif
269269+#endif
270270+271271+#ifndef yytext_ptr
272272+static void yy_flex_strncpy (char *,yyconst char *,int );
273273+#endif
274274+275275+#ifdef YY_NEED_STRLEN
276276+static int yy_flex_strlen (yyconst char * );
277277+#endif
278278+279279+#ifndef YY_NO_INPUT
280280+281281+#endif
282282+283283+/* Amount of stuff to slurp up with each read. */
284284+#ifndef YY_READ_BUF_SIZE
285285+#define YY_READ_BUF_SIZE 8192
286286+#endif
287287+288288+/* Number of entries by which start-condition stack grows. */
289289+#ifndef YY_START_STACK_INCR
290290+#define YY_START_STACK_INCR 25
291291+#endif
292292+293293+/* Default declaration of generated scanner - a define so the user can
294294+ * easily add parameters.
295295+ */
296296+#ifndef YY_DECL
297297+#define YY_DECL_IS_OURS 1
298298+299299+extern int yylex (void);
300300+301301+#define YY_DECL int yylex (void)
302302+#endif /* !YY_DECL */
303303+304304+/* yy_get_previous_state - get the state just before the EOB char was reached */
305305+306306+#undef YY_NEW_FILE
307307+#undef YY_FLUSH_BUFFER
308308+#undef yy_set_bol
309309+#undef yy_new_buffer
310310+#undef yy_set_interactive
311311+#undef YY_DO_BEFORE_ACTION
312312+313313+#ifdef YY_DECL_IS_OURS
314314+#undef YY_DECL_IS_OURS
315315+#undef YY_DECL
316316+#endif
317317+318318+#line 107 "macro.lex.l"
319319+320320+321321+#line 322 "macro.lex.yy.h"
322322+#undef yyIN_HEADER
323323+#endif /* yyHEADER_H */
···238238reactos/base/applications/iexplore # Synced to WineStaging-3.3
239239reactos/base/applications/notepad # Forked at Wine-20041201
240240reactos/base/applications/regedit # Out of sync
241241-reactos/base/applications/winhlp32 # Synced to Wine-3.0
241241+reactos/base/applications/winhlp32 # Synced to WineStaging-3.3
242242reactos/base/applications/wordpad # Synced to WineStaging-1.9.16
243243reactos/base/applications/write # Synced to WineStaging-2.9
244244reactos/base/services/rpcss # Synced to WineStaging-1.9.16