home *** CD-ROM | disk | FTP | other *** search
- /*
- ** MAIN
- **
- ** This is the main driver for the DOS Shell driver of the Sambar
- ** Server.
- **
- ** Confidential Property of Tod Sambar
- ** (c) Copyright Tod Sambar 1995-1997
- ** All rights reserved.
- **
- **
- ** Syntax:
- **
- ** server
- **
- ** Returns:
- ** 0 The program exited successfully.
- ** 1 An error was detected.
- **
- **
- ** History:
- ** Chg# Date Description Resp
- ** ---- ------- ------------------------------------------------------- ----
- ** 12SEP95 Created sambar
- */
-
- #include <sambar.h>
-
- int
- main(argc, argv)
- int argc;
- char *argv[];
- {
- /* Execute the Sambar Server Shell */
- if (sa_server((SA_VOID *)NULL) != SA_SUCCEED)
- return (1);
-
- return(0);
- }
-