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