Click here to Skip to main content
15,892,809 members
Articles / Desktop Programming / MFC

How to write a simple but effective TCP/IP port scanner for Win32

Rate me:
Please Sign up or sign in to vote.
4.82/5 (15 votes)
27 Oct 20017 min read 163K   7.3K   101  
An article on how to write a TCP/IP port scanner with a GUI, based on the MFC's property sheet paradigm
/*
	window.h
	Header per l'ambiente Win32 (SDK/MFC).
	Grazie al disegno a cazzo di cane degli headers relativi, MFC non accetta l'inclusione del
	file <windows.h>, per cui deve ricavare il tipo di ambiente utilizzato ed includere quanto
	necessario.
	Luca Piergentili, 29/08/98
	lpiergentili@yahoo.com
	http://www.geocities.com/lpiergentili/
*/
#ifndef _WINDOW_H
#define _WINDOW_H 1

#if defined(_WINDOWS)
	//#define _WIN95 1
	//#define _WIN98 1
	#define _WINNT 1

	#if defined(_WIN95) || defined(_WIN98) || defined(_WINNT)
	  #ifndef WIN32
	    #define WIN32
	  #endif
	  #ifndef _WIN32
	    #define _WIN32
	  #endif
	  #ifdef _WIN95
	    #pragma message("\t\t\tcompiling for _WIN95")
	  #endif
	  #ifdef _WIN98
	    #pragma message("\t\t\tcompiling for _WIN98")
	  #endif
	  #ifdef _WINNT
	    #pragma message("\t\t\tcompiling for _WINNT")
	  #endif
	#endif

	#if defined(_AFX) || defined(_AFXDLL)
		#ifdef WIN32_SDK
			#undef WIN32_SDK
		#endif
		#define WIN32_MFC 1
		#pragma message("\t\t\tWIN32_MFC defined")
		#include <afx.h>
		#include <afxwin.h>
		#include <afxext.h>
		#include <afxcmn.h>
		#include <afxdlgs.h>
		#include <afxmt.h>
		#include <afxole.h>
		#include <afxadv.h>
	#else
		#ifdef WIN32_MFC
			#undef WIN32_MFC
		#endif
		#define WIN32_SDK 1
		#pragma message("\t\t\tWIN32_SDK defined")
		#define STRICT 1
		#include <windows.h>
		#include <windowsx.h>
	#endif
	#include <shlobj.h>
#else
	#pragma message("\t\t\twarning: "__FILE__" included into a non-SDK/MFC environment")
#endif

#endif // _WINDOW_H

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Italy Italy
I like C and C++, Acid Jazz, James Brown, gli Spaghetti Aglio e Olio, alla Bolognesa, alla Puttanesca e le Fettuccine alla Matriciana ('Maccaroni' over the world). Of course I like beautiful big tits girls too, my little car, Frank Zappa, the art of Zen, italian coffee and much more...

Comments and Discussions