Gabriel Ivăncescu : jscript: Move the named_item_t definition.

Alexandre Julliard julliard at winehq.org
Thu Feb 20 18:26:14 CST 2020


Module: wine
Branch: master
Commit: f6a4dda977f0f1285889bd2191d02199765ceb94
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f6a4dda977f0f1285889bd2191d02199765ceb94

Author: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Date:   Thu Feb 20 21:26:45 2020 +0100

jscript: Move the named_item_t definition.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/jscript/jscript.h | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h
index 8db76bb50d..113ec99c0d 100644
--- a/dlls/jscript/jscript.h
+++ b/dlls/jscript/jscript.h
@@ -204,6 +204,14 @@ typedef HRESULT (*builtin_setter_t)(script_ctx_t*,jsdisp_t*,jsval_t);
 
 HRESULT builtin_set_const(script_ctx_t*,jsdisp_t*,jsval_t) DECLSPEC_HIDDEN;
 
+typedef struct named_item_t {
+    IDispatch *disp;
+    DWORD flags;
+    LPWSTR name;
+
+    struct named_item_t *next;
+} named_item_t;
+
 typedef struct {
     const WCHAR *name;
     builtin_invoke_t invoke;
@@ -356,14 +364,6 @@ static inline BOOL is_digit(WCHAR c)
     return '0' <= c && c <= '9';
 }
 
-typedef struct named_item_t {
-    IDispatch *disp;
-    DWORD flags;
-    LPWSTR name;
-
-    struct named_item_t *next;
-} named_item_t;
-
 typedef struct _cc_var_t cc_var_t;
 
 typedef struct {




More information about the wine-cvs mailing list