Hi, ALL,
I'd like to compile following code:

Code:
	sigfillset( &sa.sa_mask );
	sa.sa_handler = &CDevice::PipeHandler;
	sa.sa_flags = 0;
	sigaction( SIGPIPE, &sa, NULL );
	sa.sa_handler = &CDevice::TerminatorHandler;
	sigaction( SIGQUIT, &sa, NULL );
	sigaction( SIGINT, &sa, NULL );
using MSVC 2010 to run on Windows 7.

Is it possible?

Thank you.