diff options
Diffstat (limited to 'plugins/BasicHistory/src/DatExport.cpp')
-rw-r--r-- | plugins/BasicHistory/src/DatExport.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/BasicHistory/src/DatExport.cpp b/plugins/BasicHistory/src/DatExport.cpp index 491f446560..c0882ddc61 100644 --- a/plugins/BasicHistory/src/DatExport.cpp +++ b/plugins/BasicHistory/src/DatExport.cpp @@ -23,8 +23,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define EXP_FILE (*((std::ofstream*)IExport::stream))
#define IMP_FILE (*((std::ifstream*)IImport::stream))
-std::wstring GetProtocolName(HANDLE hContact);
-std::wstring GetContactId(HANDLE hContact);
+std::wstring GetProtocolName(HCONTACT hContact);
+std::wstring GetContactId(HCONTACT hContact);
#pragma pack(push, 1)
@@ -128,7 +128,7 @@ bool ReadHeader(MCHeader& header, std::istream* stream) return true;
}
-int DatExport::IsContactInFile(const std::vector<HANDLE>& contacts)
+int DatExport::IsContactInFile(const std::vector<HCONTACT>& contacts)
{
MCHeader header;
if (!ReadHeader(header, IImport::stream))
|