Changeset 36 in dev for BasicCompiler32/VarList.cpp
- Timestamp:
- Jan 20, 2007, 4:55:26 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/VarList.cpp
r3 r36 128 128 temporary[1]=0; 129 129 sprintf(lptv->item.pszText,"%s %d(&H%X)'%s'",VarName,byteData,byteData,temporary); 130 } 131 else sprintf(lptv->item.pszText,"%s %s",VarName,STRING_CANNOTACCESS); 132 } 133 else if(type==DEF_BOOLEAN){ 134 if(ReadProcessMemory(hDebugProcess,(void *)offset,&byteData,sizeof(BYTE),&dwAccessByte)){ 135 if( byteData ) lstrcpy( temporary, "True" ); 136 else lstrcpy( temporary, "False" ); 137 sprintf(lptv->item.pszText,"%s %s",VarName,temporary); 130 138 } 131 139 else sprintf(lptv->item.pszText,"%s %s",VarName,STRING_CANNOTACCESS);
Note:
See TracChangeset
for help on using the changeset viewer.