Rev | Line | |
---|
[232] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[245] | 3 | #include <NativeCode.h>
|
---|
| 4 | #include <Procedure.h>
|
---|
| 5 |
|
---|
[237] | 6 | #define BREAK_EIP(checkEip) (obp+0x00401000>=checkEip)
|
---|
[232] | 7 |
|
---|
| 8 | void ObpPlus( int step )
|
---|
| 9 | {
|
---|
| 10 | extern int obp;
|
---|
| 11 | obp += step;
|
---|
| 12 |
|
---|
| 13 | // 例:epi=0x00401999
|
---|
[237] | 14 | if( BREAK_EIP(0x00433FD7) )
|
---|
[232] | 15 | {
|
---|
| 16 | int test=0;
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
[245] | 19 |
|
---|
| 20 | void NativeCode::PutUserProcSchedule( const UserProc *pUserProc, bool isCall )
|
---|
| 21 | {
|
---|
| 22 | pUserProc->Using();
|
---|
| 23 |
|
---|
| 24 | Schedule schedule( pUserProc, size );
|
---|
| 25 | if( isCall == false )
|
---|
| 26 | {
|
---|
| 27 | schedule.SpecifyAddressOf();
|
---|
| 28 | }
|
---|
| 29 | schedules.push_back( schedule );
|
---|
| 30 |
|
---|
| 31 | *((long *)(codeBuffer+size))=0;
|
---|
| 32 | size += sizeof(long);
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 | // 未完成
|
---|
| 37 | if( isCall )
|
---|
| 38 | {
|
---|
| 39 | pobj_SubAddrSchedule->add(pUserProc,1);
|
---|
| 40 | }
|
---|
| 41 | else
|
---|
| 42 | {
|
---|
| 43 | pobj_SubAddrSchedule->add(pUserProc,0);
|
---|
| 44 | }
|
---|
| 45 | extern char *OpBuffer;
|
---|
| 46 | extern int obp;
|
---|
| 47 | *((long *)(OpBuffer+obp))=0;
|
---|
| 48 | ObpPlus( sizeof(long) );
|
---|
| 49 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.