summaryrefslogtreecommitdiff
path: root/fxjs/fxjse.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/fxjse.h')
-rw-r--r--fxjs/fxjse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fxjs/fxjse.h b/fxjs/fxjse.h
index 069a3b29a3..a29c0893af 100644
--- a/fxjs/fxjse.h
+++ b/fxjs/fxjse.h
@@ -39,18 +39,18 @@ enum FXJSE_ClassPropTypes {
};
struct FXJSE_FUNCTION_DESCRIPTOR {
- const FX_CHAR* name;
+ const char* name;
FXJSE_FuncCallback callbackProc;
};
struct FXJSE_PROPERTY_DESCRIPTOR {
- const FX_CHAR* name;
+ const char* name;
FXJSE_PropAccessor getProc;
FXJSE_PropAccessor setProc;
};
struct FXJSE_CLASS_DESCRIPTOR {
- const FX_CHAR* name;
+ const char* name;
FXJSE_FuncCallback constructor;
const FXJSE_PROPERTY_DESCRIPTOR* properties;
const FXJSE_FUNCTION_DESCRIPTOR* methods;