/ Get the key list from the INI file. */ /
| 585 | /* Get the key list from the INI file. */ |
| 586 | /***********************************************************************/ |
| 587 | char *TDBXIN::GetKeylist(PGLOBAL g, char *sec) |
| 588 | { |
| 589 | if (!Keylist) |
| 590 | Keylist = (char*)PlugSubAlloc(g, NULL, Keylen); |
| 591 | |
| 592 | GetPrivateProfileString(sec, NULL, "", Keylist, Keylen, Ifile); |
| 593 | return Keylist; |
| 594 | } // end of GetKeylist |
| 595 | |
| 596 | /***********************************************************************/ |
| 597 | /* Allocate XIN column description block. */ |
nothing calls this directly
no test coverage detected