HistoryAPI.h 222 B

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