summaryrefslogtreecommitdiff
path: root/src/htsbase.h
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-09-14 09:29:44 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-09-14 09:29:44 +0000
commit011ba96d5326c78f124da0373a3d27eb1f674ff5 (patch)
tree251e209e0a82af209fdfe8791ef1a9d6a8d27124 /src/htsbase.h
parentd7cc6f5b55a0d005ffc669810f7671002c5d63dc (diff)
Removed dead code (_WIN32_WCE)
Diffstat (limited to 'src/htsbase.h')
-rw-r--r--src/htsbase.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/htsbase.h b/src/htsbase.h
index c7ffb99..01b4705 100644
--- a/src/htsbase.h
+++ b/src/htsbase.h
@@ -111,7 +111,6 @@ extern "C" {
extern HTSEXT_API t_abortLog abortLog__;
#define abortLog(a) abortLog__(a, __FILE__, __LINE__)
#define _ ,
-#ifndef _WIN32_WCE
#define abortLogFmt(a) do { \
FILE* fp = fopen("CRASH.TXT", "wb"); \
if (!fp) fp = fopen("/tmp/CRASH.TXT", "wb"); \
@@ -128,11 +127,6 @@ extern "C" {
fclose(fp); \
} \
} while(0)
-#else
-#define abortLogFmt(a) do { \
- XCEShowMessageA("HTTrack " HTTRACK_VERSIONID " closed at '" __FILE__ "', line %d\r\nReason:\r\n%s\r\n", __LINE__, a); \
-} while(0)
-#endif
#define assertf(exp) do { \
if (! ( exp ) ) { \