summaryrefslogtreecommitdiff
path: root/library/binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/binary.h')
-rw-r--r--library/binary.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/binary.h b/library/binary.h
index 847c7169..b796ddbb 100644
--- a/library/binary.h
+++ b/library/binary.h
@@ -8,10 +8,10 @@
#define BINARY_H_INCLUDED
#include "../shared/zstring.h"
-#include <wx/longlong.h>
#include "../shared/file_error.h"
+#include "../shared/int64.h"
-namespace ffs3
+namespace zen
{
//callback functionality for status updates while comparing
@@ -19,7 +19,7 @@ class CompareCallback
{
public:
virtual ~CompareCallback() {}
- virtual void updateCompareStatus(const wxLongLong& totalBytesTransferred) = 0;
+ virtual void updateCompareStatus(zen::UInt64 totalBytesTransferred) = 0;
};
bool filesHaveSameContent(const Zstring& filename1, const Zstring& filename2, CompareCallback& callback); //throw FileError
bgstack15