blob: 96492b17046cf19f84f757967bfe5c5ec1c9df82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef XMB_H
#define XMB_H
#include <string>
#include <vector>
using namespace std;
int do_xlb_export(const string& outFile, const vector<string>& resFiles);
#endif // XMB_H
|