]> sigrok.org Git - libsigrok.git/blobdiff - src/backend.c
Doxyfile: Set version to 0.4.0.
[libsigrok.git] / src / backend.c
index 8084a1c54dbca7dd9783f46666ae01ad31baaa51..aa51a92d480636d932687cb474f9bffbe9d654d8 100644 (file)
@@ -20,6 +20,9 @@
 
 #include <config.h>
 #include <glib.h>
+#ifdef _WIN32
+#include <winsock2.h>
+#endif
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
@@ -464,6 +467,9 @@ SR_API int sr_init(struct sr_context **ctx)
        struct sr_context *context;
        struct sr_dev_driver ***lists, **drivers;
        GArray *array;
+#ifdef _WIN32
+       WSADATA wsadata;
+#endif
 
        print_versions();
 
@@ -502,6 +508,14 @@ SR_API int sr_init(struct sr_context **ctx)
                return ret;
        }
 
+#ifdef _WIN32
+       if ((ret = WSAStartup(MAKEWORD(2, 2), &wsadata)) != 0) {
+               sr_err("WSAStartup failed with error code %d.", ret);
+               ret = SR_ERR;
+               goto done;
+       }
+#endif
+
 #ifdef HAVE_LIBUSB_1_0
        ret = libusb_init(&context->libusb_ctx);
        if (LIBUSB_SUCCESS != ret) {
@@ -510,12 +524,13 @@ SR_API int sr_init(struct sr_context **ctx)
                goto done;
        }
 #endif
+       sr_resource_set_hooks(context, NULL, NULL, NULL, NULL);
 
        *ctx = context;
        context = NULL;
        ret = SR_OK;
 
-#ifdef HAVE_LIBUSB_1_0
+#if defined(HAVE_LIBUSB_1_0) || defined(_WIN32)
 done:
 #endif
        g_free(context);
@@ -541,6 +556,10 @@ SR_API int sr_exit(struct sr_context *ctx)
 
        sr_hw_cleanup_all(ctx);
 
+#ifdef _WIN32
+       WSACleanup();
+#endif
+
 #ifdef HAVE_LIBUSB_1_0
        libusb_exit(ctx->libusb_ctx);
 #endif