aboutsummaryrefslogtreecommitdiff
path: root/src/gns/w32nsp-uninstall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/w32nsp-uninstall.c')
-rw-r--r--src/gns/w32nsp-uninstall.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/gns/w32nsp-uninstall.c b/src/gns/w32nsp-uninstall.c
index bb8db668b..ac5aafe2d 100644
--- a/src/gns/w32nsp-uninstall.c
+++ b/src/gns/w32nsp-uninstall.c
@@ -1,30 +1,30 @@
1#define INITGUID 1#define INITGUID
2#include <windows.h> 2#include <windows.h>
3#include <nspapi.h> 3#include <nspapi.h>
4#include <ws2spi.h> 4#include <ws2spi.h>
5#include "gnunet_w32nsp_lib.h" 5#include "gnunet_w32nsp_lib.h"
6#include <stdio.h> 6#include <stdio.h>
7 7
8int 8int
9main (int argc, char **argv) 9main (int argc, char **argv)
10{ 10{
11 int ret; 11 int ret;
12 GUID id = GNUNET_NAMESPACE_PROVIDER_DNS; 12 GUID id = GNUNET_NAMESPACE_PROVIDER_DNS;
13 WSADATA wsd; 13 WSADATA wsd;
14 14
15 if (WSAStartup(MAKEWORD(2,2), &wsd) != 0) 15 if (WSAStartup(MAKEWORD(2,2), &wsd) != 0)
16 { 16 {
17 fprintf (stderr, "WSAStartup() failed: %lu\n", GetLastError()); 17 fprintf (stderr, "WSAStartup() failed: %lu\n", GetLastError());
18 return 5; 18 return 5;
19 } 19 }
20 20
21 ret = WSCUnInstallNameSpace (&id); 21 ret = WSCUnInstallNameSpace (&id);
22 if (ret == NO_ERROR) 22 if (ret == NO_ERROR)
23 { 23 {
24 WSACleanup (); 24 WSACleanup ();
25 return 0; 25 return 0;
26 } 26 }
27 fprintf (stderr, "WSCUnInstallNameSpace() failed: %lu\n", GetLastError ()); 27 fprintf (stderr, "WSCUnInstallNameSpace() failed: %lu\n", GetLastError ());
28 WSACleanup (); 28 WSACleanup ();
29 return 1; 29 return 1;
30} \ No newline at end of file 30} \ No newline at end of file