1 | #pragma once
|
---|
2 |
|
---|
3 | class Type;
|
---|
4 | class CClass;
|
---|
5 |
|
---|
6 | BOOL IsPtrType(int type);
|
---|
7 | BOOL IsSignedType(int type);
|
---|
8 | BOOL IsNaturalWholeNumberType(int type);
|
---|
9 | BOOL IsWholeNumberType(int type);
|
---|
10 | BOOL IsRealNumberType(int type);
|
---|
11 | BOOL Is64Type(int type);
|
---|
12 | int GetSignedType(int type);
|
---|
13 | int GetUnsignedType(int type);
|
---|
14 | int GetPtrType(int type);
|
---|
15 | BOOL GetTypeName(int type,LONG_PTR lpIndex,char *name);
|
---|
16 | Type GetStringTypeInfo();
|
---|
17 | void GetWithName(char *buffer);
|
---|
18 | BOOL GetVarFormatString(char *buffer,char *array,char *array2,char *NestMember, ReferenceKind &refType, bool *pIsParameterInBracket = NULL );
|
---|
19 | void GetArrayElement( const char *buffer,char *variable,char *array_element);
|
---|
20 | BOOL CheckVarNameError(char *name,int nowLine);
|
---|
21 | int JumpSubScripts( const Subscripts &subscripts );
|
---|
22 | bool GetMemberType( const Type &classType, const char *lpszMember, Type &resultType, BOOL bPrivateAccess, bool isErrorEnabled);
|
---|
23 | bool GetVarType( const char *nameBuffer, Type &resultType, bool isError);
|
---|
24 | bool GetVarOffsetReadOnly(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType, Subscripts *pResultSubscripts = NULL );
|
---|
25 | bool GetVarOffsetReadWrite(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType, Subscripts *pResultSubscripts = NULL );
|
---|
26 | bool GetDimentionFormat( const char *buffer,
|
---|
27 | char *VarName,
|
---|
28 | Subscripts &subscripts,
|
---|
29 | Type &type,
|
---|
30 | char *InitBuf,
|
---|
31 | char *ConstractParameter );
|
---|
32 | BOOL GetNowStaticVarFullName(char *VarName,char *FullName);
|
---|
33 | void AddGlobalVariable( const char *name, const Subscripts &subscripts, const Type &type,const char *InitBuf,const char *ConstractParameter,DWORD dwFlag);
|
---|
34 | void dim(char *Parameter,DWORD dwFlags);
|
---|
35 | void OpcodeDim(char *Parameter,DWORD dwFlags);
|
---|
36 | void DebugVariable(void);
|
---|