mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
25 lines
360 B
C
25 lines
360 B
C
|
|
||
|
#ifndef _JSCRIPT_PRECOMP_H
|
||
|
#define _JSCRIPT_PRECOMP_H
|
||
|
|
||
|
#include <wine/config.h>
|
||
|
#include <wine/port.h>
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
#define WIN32_NO_STATUS
|
||
|
#define _INC_WINDOWS
|
||
|
#define COM_NO_WINDOWS_H
|
||
|
|
||
|
#include "jscript.h"
|
||
|
|
||
|
#include <objsafe.h>
|
||
|
|
||
|
#include <wine/debug.h>
|
||
|
|
||
|
#include "engine.h"
|
||
|
#include "parser.h"
|
||
|
#include "regexp.h"
|
||
|
|
||
|
#endif /* !_JSCRIPT_PRECOMP_H */
|