source: dev/trunk/abdev/BasicCompiler_Common/VariableOpe.h@ 182

Last change on this file since 182 was 182, checked in by dai_9181, 17 years ago
File size: 1.6 KB
Line 
1
2
3BOOL IsPtrType(int type);
4BOOL IsSignedType(int type);
5BOOL IsNaturalWholeNumberType(int type);
6BOOL IsWholeNumberType(int type);
7BOOL IsRealNumberType(int type);
8BOOL Is64Type(int type);
9int GetSignedType(int type);
10int GetUnsignedType(int type);
11int GetTypeSize(int type,LONG_PTR lpIndex);
12int GetPtrType(int type);
13BOOL GetTypeName(int type,LONG_PTR lpIndex,char *name);
14void GetWithName(char *buffer);
15BOOL GetVarFormatString(char *buffer,char *array,char *array2,char *NestMember, CClass::RefType &refType );
16void GetArrayElement( const char *buffer,char *variable,char *array_element);
17BOOL CheckVarNameError(char *name,int nowLine);
18int JumpSubScripts(const int *ss);
19bool GetMemberType( const CClass &objClass, const char *lpszMember, Type &resultType, BOOL bPrivateAccess, bool isErrorEnabled);
20bool GetVarType( const char *nameBuffer, Type &resultType, bool isError);
21bool GetVarOffsetReadOnly(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType,int *pss = NULL );
22bool GetVarOffsetReadWrite(const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType,int *pss = NULL );
23bool GetDimentionFormat( const char *buffer,
24 char *VarName,
25 int *SubScripts,
26 Type &type,
27 char *InitBuf,
28 char *ConstractParameter );
29BOOL GetNowStaticVarFullName(char *VarName,char *FullName);
30void AddGlobalVariable( const char *name,int *SubScripts, const Type &type,const char *InitBuf,const char *ConstractParameter,DWORD dwFlag);
31void dim(char *Parameter,DWORD dwFlags);
32void OpcodeDim(char *Parameter,DWORD dwFlags);
Note: See TracBrowser for help on using the repository browser.