From: Gabriel Ivăncescu gabrielopcode@gmail.com
Signed-off-by: Gabriel Ivăncescu gabrielopcode@gmail.com --- dlls/jscript/jscript.h | 4 ---- dlls/jscript/jsdisp.idl | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 3d3d0f8a6c9..a8285a8f468 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -76,10 +76,6 @@ typedef struct jsdisp_t jsdisp_t; extern HINSTANCE jscript_hinstance ; HRESULT get_dispatch_typeinfo(ITypeInfo**);
-#define PROPF_ARGMASK 0x00ff -#define PROPF_METHOD 0x0100 -#define PROPF_CONSTR 0x0200 - #define PROPF_ALL (PROPF_ENUMERABLE | PROPF_WRITABLE | PROPF_CONFIGURABLE)
#define PROPF_VERSION_MASK 0x01ff0000 diff --git a/dlls/jscript/jsdisp.idl b/dlls/jscript/jsdisp.idl index bae00d40a3d..d31dd221eec 100644 --- a/dlls/jscript/jsdisp.idl +++ b/dlls/jscript/jsdisp.idl @@ -30,6 +30,10 @@ struct property_info UINT32 func_iid; };
+const unsigned int PROPF_ARGMASK = 0x00ff; +const unsigned int PROPF_METHOD = 0x0100; +const unsigned int PROPF_CONSTR = 0x0200; + const unsigned int PROPF_ENUMERABLE = 0x0400; const unsigned int PROPF_WRITABLE = 0x0800; const unsigned int PROPF_CONFIGURABLE = 0x1000;