]> sigrok.org Git - libsigrok.git/commitdiff
Consistently use the _WIN32 #define.
authorUwe Hermann <redacted>
Sat, 1 Sep 2018 19:11:45 +0000 (21:11 +0200)
committerUwe Hermann <redacted>
Sat, 1 Sep 2018 19:11:45 +0000 (21:11 +0200)
The _WIN32 variant is available pretty much on all compilers, others
might not be. G_OS_WIN32 would probably be an equally well-suited
alternative, but for now we standardize on _WIN32.

  http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#WindowswithCygwinPOSIX

src/hardware/ipdbg-la/protocol.c
src/libsigrok-internal.h
src/serial.c
src/session.c
src/usb.c

index 963a83eaf5d89f043f1da20dda7214d5d51f7028..4c8f33b41725514a8a174d41f128e8f71a543e82 100644 (file)
 #define _WIN32_WINNT 0x0501
 #include <winsock2.h>
 #include <ws2tcpip.h>
-#endif
-
-#include <string.h>
-#include <unistd.h>
-
-#ifndef _WIN32
+#else
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <netdb.h>
 #include <sys/ioctl.h>
 #endif
-
+#include <string.h>
+#include <unistd.h>
 #include <errno.h>
 #include "protocol.h"
 
@@ -69,7 +65,7 @@
 
 static gboolean data_available(struct ipdbg_la_tcp *tcp)
 {
-#ifdef __WIN32__
+#ifdef _WIN32
        u_long bytes_available;
        ioctlsocket(tcp->socket, FIONREAD, &bytes_available);
        return (bytes_available > 0);
index bd308472e0711ded76d2957aa9d8681b0662c32c..50f83bd1b54e267b752bdc18a53c3835d4de7a19 100644 (file)
@@ -745,7 +745,7 @@ struct drv_context {
 
 /*--- log.c -----------------------------------------------------------------*/
 
-#if defined(G_OS_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
+#if defined(_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
 /*
  * On MinGW, we need to specify the gnu_printf format flavor or GCC
  * will assume non-standard Microsoft printf syntax.
index aa8d4ddedf3b383fadbdf06bedbe062ba67f24c4..3c7ab643b6d6dfb6a75c2ac7797fc6c87eaf02a2 100644 (file)
@@ -28,7 +28,7 @@
 #include <libserialport.h>
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
-#ifdef G_OS_WIN32
+#ifdef _WIN32
 #include <windows.h> /* for HANDLE */
 #endif
 
@@ -788,7 +788,7 @@ SR_PRIV int sr_serial_extract_options(GSList *options, const char **serial_devic
 }
 
 /** @cond PRIVATE */
-#ifdef G_OS_WIN32
+#ifdef _WIN32
 typedef HANDLE event_handle;
 #else
 typedef int event_handle;
index fc7d0bc4b8dd908504bb05d99a1b291846235a5c..16fdfffa4bf945872bb3f8004346f76018cae4a6 100644 (file)
@@ -1294,7 +1294,7 @@ SR_PRIV int sr_session_source_add_channel(struct sr_session *session,
        /* We should be using g_io_create_watch(), but can't without
         * changing the driver API, as the callback signature is different.
         */
-#ifdef G_OS_WIN32
+#ifdef _WIN32
        g_io_channel_win32_make_pollfd(channel, events, &pollfd);
 #else
        pollfd.fd = g_io_channel_unix_get_fd(channel);
index 8073f869dbdacf3f5a9842d6ee516a23507e7773..b453c04c8218d93a9ca22eff23f40e4f0c6e79c6 100644 (file)
--- a/src/usb.c
+++ b/src/usb.c
@@ -184,7 +184,7 @@ static LIBUSB_CALL void usb_pollfd_added(libusb_os_handle fd,
                return;
 
        pollfd = g_slice_new(GPollFD);
-#ifdef G_OS_WIN32
+#ifdef _WIN32
        events = G_IO_IN;
 #endif
        pollfd->fd = (gintptr)fd;