home *** CD-ROM | disk | FTP | other *** search
- #include "pipe.h"
- #pragma hdrstop
-
- /*
- ** Author: Samuel R. Blackburn
- ** CI$: 76300,326
- ** Internet: sammy@sed.csc.com
- **
- ** You can use it any way you like.
- */
-
- int main()
- {
- // Create Server Thread
-
- if ( create_server_pipe( "IPC$" ) == TRUE )
- {
- TRACE( "Pipe Created\n" );
- printf( "Server Pipe Created\n" );
- }
-
- // Create client thread
-
- return( EXIT_SUCCESS );
- }
-