[75] | 1 |
|
---|
| 2 |
|
---|
| 3 | BOOL IsPtrType(int type);
|
---|
| 4 | BOOL IsSignedType(int type);
|
---|
| 5 | BOOL IsNaturalWholeNumberType(int type);
|
---|
| 6 | BOOL IsWholeNumberType(int type);
|
---|
| 7 | BOOL IsRealNumberType(int type);
|
---|
| 8 | BOOL Is64Type(int type);
|
---|
| 9 | int GetSignedType(int type);
|
---|
| 10 | int GetUnsignedType(int type);
|
---|
| 11 | int GetTypeSize(int type,LONG_PTR lpIndex);
|
---|
| 12 | int GetPtrType(int type);
|
---|
| 13 | BOOL GetTypeName(int type,LONG_PTR lpIndex,char *name);
|
---|
[193] | 14 | Type GetStringTypeInfo();
|
---|
[97] | 15 | void GetWithName(char *buffer);
|
---|
[75] | 16 | BOOL GetVarFormatString(char *buffer,char *array,char *array2,char *NestMember, CClass::RefType &refType );
|
---|
| 17 | void GetArrayElement( const char *buffer,char *variable,char *array_element);
|
---|
| 18 | BOOL CheckVarNameError(char *name,int nowLine);
|
---|
| 19 | int JumpSubScripts(const int *ss);
|
---|
[97] | 20 | bool GetMemberType( const CClass &objClass, const char *lpszMember, Type &resultType, BOOL bPrivateAccess, bool isErrorEnabled);
|
---|
[75] | 21 | bool GetVarType( const char *nameBuffer, Type &resultType, bool isError);
|
---|
| 22 | bool GetVarOffsetReadOnly(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType,int *pss = NULL );
|
---|
| 23 | bool GetVarOffsetReadWrite(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType,int *pss = NULL );
|
---|
| 24 | bool GetDimentionFormat( const char *buffer,
|
---|
| 25 | char *VarName,
|
---|
| 26 | int *SubScripts,
|
---|
| 27 | Type &type,
|
---|
| 28 | char *InitBuf,
|
---|
| 29 | char *ConstractParameter );
|
---|
| 30 | BOOL GetNowStaticVarFullName(char *VarName,char *FullName);
|
---|
[138] | 31 | void AddGlobalVariable( const char *name,int *SubScripts, const Type &type,const char *InitBuf,const char *ConstractParameter,DWORD dwFlag);
|
---|
[75] | 32 | void dim(char *Parameter,DWORD dwFlags);
|
---|
| 33 | void OpcodeDim(char *Parameter,DWORD dwFlags);
|
---|