| 10469 | |
| 10470 | namespace { |
| 10471 | struct triplet { |
| 10472 | triplet(const char* m, const char* u) : mbcs(m), unicode(u) {} |
| 10473 | std::string mbcs, unicode; |
| 10474 | }; |
| 10475 | |
| 10476 | const std::map<std::string, triplet> apis = { |
| 10477 | std::make_pair("_topen", triplet("open", "_wopen")), |