Unobfuscate one symbol (name).
| 66 | |
| 67 | // Unobfuscate one symbol (name). |
| 68 | cobf_error cobf::unobf_sym(string dll_name, string sym_name) { |
| 69 | return this->unobf_sym_internal(dll_name, sym_name); |
| 70 | }; |
| 71 | |
| 72 | // Unobfuscate one symbol (ordinal). |
| 73 | cobf_error cobf::unobf_sym(string dll_name, WORD sym_ord) { |
nothing calls this directly
no test coverage detected