home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
WEBSERVE
/
SAMBAR
/
DATA.1
/
main.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-04-27
|
769b
|
40 lines
/*
** 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);
}