---------------------------------------------------------------------------
| 65 | }; |
| 66 | //--------------------------------------------------------------------------- |
| 67 | int gettextcode(const char * value, CODE * codetable) |
| 68 | { |
| 69 | CODE *i; |
| 70 | if (value) |
| 71 | for (i = codetable; i->c_val != -1; i++) |
| 72 | if (strcmp(i->c_name, value)==0) |
| 73 | return (i->c_val); |
| 74 | return -1; |
| 75 | } |
| 76 | //--------------------------------------------------------------------------- |
| 77 | void GetPriorities(TStrings * s) |
| 78 | { |