summary refs log blame commit diff stats
path: root/src/fe-gtk/check-version.c
blob: 504b23166f740df7025bf3b9c01f5ae8a525f96f (plain) (tree)



































                                                                                                         
#include <windows.h>
#include <wininet.h>

char* check_version ()
{
	HINTERNET hINet, hFile;
	hINet = InternetOpen("XChat-WDK Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0 );
	
	if (!hINet)
	{
		return "error";
	}

	hFile = InternetOpenUrl (hINet, "http://xchat-wdk.googlecode.com/hg/version.txt", NULL, 0, 0, 0);
	
	if (hFile)
	{
		static char buffer[1024];
		DWORD dwRead;
		while (InternetReadFile(hFile, buffer, 1023, &dwRead))
		{
			if (dwRead == 0)
			{
				break;
			}
			buffer[dwRead] = 0;
		}
		
		return buffer;
		InternetCloseHandle (hFile);
	}
	
	InternetCloseHandle (hINet);

	return "error";
}