File x.diff of Package mingw32-multimon-ng
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 29e5964..bbdaf7e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -99,11 +99,12 @@ set( SOURCES ${SOURCES}
fms.c
demod_eas.c
demod_morse.c
- demod_dumpcsv.c
+ #demod_dumpcsv.c
)
add_executable( "${TARGET}" ${SOURCES} ${HEADERS} )
set_property(TARGET "${TARGET}" PROPERTY LINKER_LANGUAGE C)
target_link_libraries( "${TARGET}" m )
+install(TARGETS "${TARGET}" DESTINATION bin)
diff --git a/multimon.h b/multimon.h
index 7fd3753..96b42ef 100644
--- a/multimon.h
+++ b/multimon.h
@@ -237,10 +237,6 @@ struct demod_state {
int_fast8_t current_state; // High = 1, Low = 0
} morse;
- struct l1_state_dumpcsv {
- uint32_t current_sequence;
- } dumpcsv;
-
#ifndef NO_X11
@@ -302,8 +298,6 @@ extern const struct demod_param demod_ccir;
extern const struct demod_param demod_morse;
-extern const struct demod_param demod_dumpcsv;
-
#ifndef NO_X11
extern const struct demod_param demod_scope;
#endif
@@ -317,7 +311,7 @@ extern const struct demod_param demod_scope;
#define ALL_DEMOD &demod_poc5, &demod_poc12, &demod_poc24, &demod_eas, &demod_ufsk1200, &demod_clipfsk, &demod_fmsfsk, \
&demod_afsk1200, &demod_afsk2400, &demod_afsk2400_2, &demod_afsk2400_3, &demod_hapn4800, \
&demod_fsk9600, &demod_dtmf, &demod_zvei1, &demod_zvei2, &demod_zvei3, &demod_dzvei, \
- &demod_pzvei, &demod_eea, &demod_eia, &demod_ccir, &demod_morse, &demod_dumpcsv SCOPE_DEMOD
+ &demod_pzvei, &demod_eea, &demod_eia, &demod_ccir, &demod_morse, SCOPE_DEMOD
/* ---------------------------------------------------------------------- */
diff --git a/win32_soundin.c b/win32_soundin.c
index 9c9fb15..6272777 100644
--- a/win32_soundin.c
+++ b/win32_soundin.c
@@ -1,4 +1,4 @@
-#include <Windows.h>
+#include <windows.h>
#include <stdio.h>
#define BUFFER_LEN_IN_MS 20