.NET
portuw.txt
Associated article: Porting Across UNIX and Win32
Tags: .NET
Published source code accompanying the article by Abdul Sakib Mondal in which he ports a load- balancing application first from Sun OS to Linux, then from Linux to Win32. Also see PORTUW.ZIP
Porting Across UNIX and Win32
by Abdul Sakib Mondal
Example 1:
#ifdef WIN32
VOID ServiceStart (DWORD argc, LPTSTR *argv)
#endif
#ifdef UNIX
int main(int argc,char *argv[])
#endif
{
/**Main work is done here**/
}
Listing One
/***************CODE FOR SUN OS**********************************/
/* The ...


