| 470 | const char* DefFileBankEncrypt[] = {".p3d", ".bin", ".cpp", ".sqm", ".sqs", ".ext", ".csv", nullptr}; |
| 471 | |
| 472 | static bool StringInList(const char* str, const char** list) |
| 473 | { |
| 474 | while (*list) |
| 475 | { |
| 476 | if (!strcmpi(*list, str)) |
| 477 | { |
| 478 | return true; |
| 479 | } |
| 480 | list++; |
| 481 | } |
| 482 | return false; |
| 483 | } |
| 484 | |
| 485 | LSError FileBankManager::Create(const char* tgt, const char* src, bool compress, bool optimize, const char* logFile, |
| 486 | const char** doNotCompress, const QFProperty* properties, int nProperties) |