wxhelper/src/get_db_handle.h

11 lines
314 B
C
Raw Normal View History

2022-12-21 20:30:44 +08:00
#ifndef GET_DB_HANDLE_H_
#define GET_DB_HANDLE_H_
#include "windows.h"
#include <vector>
#include <string>
2022-12-21 20:30:44 +08:00
std::vector<void *> GetDbHandles();
DWORD GetDbHandleByDbName(wchar_t *dbname);
unsigned int GetLocalIdByMsgId(ULONG64 msgid, int &dbIndex);
std::vector<std::string> GetChatMsgByMsgId(ULONG64 msgid);
2022-12-21 20:30:44 +08:00
#endif