Check the symbol name.
| 598 | |
| 599 | // Check the symbol name. |
| 600 | BOOL cobf::csym::check_sym(string n_sym) |
| 601 | { |
| 602 | // Extra check if imported by name. |
| 603 | return this->by_name && match_wildcard(n_sym.c_str(), |
| 604 | this->sym_name.c_str()); |
| 605 | }; |
| 606 | |
| 607 | // Check the symbol ordinal. |
| 608 | BOOL cobf::csym::check_sym(WORD n_ord) |