Constructor.
| 688 | |
| 689 | // Constructor. |
| 690 | cobf::csym::csym(string sym_name, DWORD dll_rva, DWORD fth_rva, DWORD oth_off, DWORD name_off) |
| 691 | : sym_name(sym_name), dll_rva(dll_rva), fth_rva(fth_rva), oth_off(oth_off), name_off(name_off) |
| 692 | { |
| 693 | // Init. |
| 694 | this->by_name = TRUE; |
| 695 | this->sym_ord = 0; |
| 696 | this->obfuscated = FALSE; |
| 697 | this->obf_ord = 0; |
| 698 | this->to_name = FALSE; |
| 699 | }; |
| 700 | |
| 701 | // Constructor. |
| 702 | cobf::csym::csym(WORD sym_ord, DWORD dll_rva, DWORD fth_rva, DWORD oth_off) : |
nothing calls this directly
no outgoing calls
no test coverage detected