Textractor_test/GUI/extensions.h

22 lines
528 B
C
Raw Normal View History

2018-07-27 13:42:21 +08:00
#ifndef EXTENSIONS_H
#define EXTENSIONS_H
#include <Windows.h>
#include <string>
#include <map>
#include <unordered_map>
#include <vector>
2018-07-27 14:16:15 +08:00
#include <QComboBox>
2018-07-27 13:42:21 +08:00
2018-07-29 03:41:21 +08:00
std::map<int, QString> LoadExtensions();
2018-07-27 13:42:21 +08:00
std::wstring DispatchSentenceToExtensions(std::wstring sentence, std::unordered_map<std::string, int> miscInfo);
2018-07-30 05:36:45 +08:00
struct InfoForExtension
{
char* propertyName;
int propertyValue;
InfoForExtension* nextProperty;
};
2018-07-31 02:29:36 +08:00
typedef const wchar_t*(*ExtensionFunction)(const wchar_t*, const InfoForExtension*);
2018-07-27 13:42:21 +08:00
#endif // EXTENSIONS_H