diff options
Diffstat (limited to 'fxjs/fxjse.h')
-rw-r--r-- | fxjs/fxjse.h | 6 |
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; |