| 925 | BOOL CDetourDis::s_fLimitReferencesToModule = FALSE; |
| 926 | |
| 927 | BOOL CDetourDis::SetCodeModule(PBYTE pbBeg, PBYTE pbEnd, BOOL fLimitReferencesToModule) |
| 928 | { |
| 929 | if (pbEnd < pbBeg) { |
| 930 | return FALSE; |
| 931 | } |
| 932 | |
| 933 | s_pbModuleBeg = pbBeg; |
| 934 | s_pbModuleEnd = pbEnd; |
| 935 | s_fLimitReferencesToModule = fLimitReferencesToModule; |
| 936 | |
| 937 | return TRUE; |
| 938 | } |
| 939 | |
| 940 | ///////////////////////////////////////////////////////// Disassembler Tables. |
| 941 | // |
nothing calls this directly
no outgoing calls
no test coverage detected