Changeset 73 in dev for BasicCompiler_Common/Debug.cpp


Ignore:
Timestamp:
Mar 16, 2007, 11:07:14 PM (17 years ago)
Author:
dai_9181
Message:

Parameterクラスを適用。32bit側は動くようになったので、64bitのほうを調整する。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Debug.cpp

    r4 r73  
    224224    SendDlgItemMessage(hMainDlg,IDC_DEBUGLIST,EM_REPLACESEL,0,(LPARAM)buffer);
    225225}
    226 SUBINFO *GetSubFromObp(ULONG_PTR pos){
    227     extern SUBINFO **ppSubHash;
    228     SUBINFO *psi;
     226SubInfo *GetSubFromObp(ULONG_PTR pos){
     227    extern SubInfo **ppSubHash;
     228    SubInfo *psi;
    229229    int i2;
    230230
     
    447447    pobj_dti=new CDebugThreadInfo();
    448448
    449     SUBINFO *psi;
     449    SubInfo *psi;
    450450
    451451    extern DWORD dwStepRun;
     
    681681                        if(!bRet) MessageBox(hMainDlg,"プロセスメモリーの読み込みに失敗","error",MB_OK);
    682682
    683                         extern SUBINFO *pSub_DebugSys_EndProc;
     683                        extern SubInfo *pSub_DebugSys_EndProc;
    684684                        if((BYTE)temporary[0]==0xE8&&
    685685                            *((long *)(temporary+1))+5==(long)rva_to_real(pSub_DebugSys_EndProc->CompileAddress)-(long)EIP_RIP(Context)){
Note: See TracChangeset for help on using the changeset viewer.