Click here to Skip to main content
15,884,176 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 162.8K   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
/*
	pragma.h
	Elimina i warning scassacazzi del VC++ 4.2 (da includere solo nei .c/.cpp).
	Luca Piergentili, 13/08/96
	lpiergentili@yahoo.com
	http://www.geocities.com/lpiergentili/
*/
#ifndef _PRAGMA_H
#define _PRAGMA_H 1

#if defined(_MSC_VER)
  #ifdef _DEBUG
    #pragma message("\t\t\t"__FILE__" included: warnings disabled")

    #pragma warning(disable:4100) /* unreferenced formal parameter */
    #pragma warning(disable:4102) /* unreferenced label */
    #pragma warning(disable:4115) /* named type definition in parentheses */
    #pragma warning(disable:4127) /* conditional expression is constant */
    #pragma warning(disable:4131) /* uses old-style declarator */

    #pragma warning(disable:4305) /* abstract declarator : truncation from '...' to '...' */

    #pragma warning(disable:4201) /* nonstandard extension used : nameless struct/union */
    #pragma warning(disable:4206) /* nonstandard extension used : translation unit is empty */
    #pragma warning(disable:4214) /* nonstandard extension used : bit field types other than int */
    #pragma warning(disable:4244) /* conversion from 'int' to 'unsigned short', possible loss of data */

    #pragma warning(disable:4505) /* unreferenced local function has been removed */
    #pragma warning(disable:4514) /* unreferenced inline function has been removed */

  #endif
#endif

#endif /* _PRAGMA_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