- Timestamp:
- Jul 21, 2008, 12:57:10 AM (16 years ago)
- Location:
- trunk/ab5.0/abdev
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/Subroutine.cpp
r686 r699 7 7 #endif 8 8 9 int GetCallProcName(c har *buffer,char *name){9 int GetCallProcName(const char *buffer,char *name){ 10 10 int i2,i3,IsStr=0; 11 11 -
trunk/ab5.0/abdev/BasicCompiler_Common/VariableOpe.cpp
r684 r699 188 188 } 189 189 190 void GetWithName(std::string& buffer){ 191 extern WithInfos withInfos; 192 std::string tmp; 193 tmp.reserve(1024); 194 BOOST_FOREACH( const WithInfo &withInfo, withInfos ) 195 { 196 tmp+=withInfo.name; 197 } 198 tmp.swap(buffer); 199 } 190 200 191 201 void GetArrange(char *variable,char *variAnswer, Subscripts &subscripts ){ -
trunk/ab5.0/abdev/BasicCompiler_Common/common.h
r648 r699 346 346 347 347 //Subroutine.cpp 348 int GetCallProcName(c har *buffer,char *name);348 int GetCallProcName(const char *buffer,char *name); 349 349 int GetProc(char *name,void **ppInfo); 350 350 void SplitObjectName(const char *name,char *ObjectName, ReferenceKind &referenceFind ); -
trunk/ab5.0/abdev/ab_common/include/Lexical/TypeMisc.h
r600 r699 1 1 #pragma once 2 2 3 #define VN_SIZE 10243 #define VN_SIZE 4096 4 4 #define PTR_SIZE sizeof(LONG_PTR) 5 5
Note:
See TracChangeset
for help on using the changeset viewer.