blob: cd5dfc8de81449ff262471765519ba78d96cdfd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "api_history.h"
class HistoryAPI : public api_history
{
public:
historyRecordList *Query(const wchar_t *query);
void FreeHistoryList(historyRecordList *historyList);
protected:
RECVS_DISPATCH;
};
|