/****************************************************************************
 File: readme.txt

 (C) Copyright 1992 by GO Corporation, All Rights Reserved.

 $Revision:   1.2  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:05:14  $

 Basic Service is the absolute minimum code required to be a service.
 This is the Hello World for service writers. It only requires the 
 service writer to implement one message: msgNewDefaults. 
 This approach helps to get someone up and running as a service in the
 shortest time.

 For more complex services, see the TESTSVC and MILSVC samples.
****************************************************************************/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Objectives					  			   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 This sample service shows how to:

	-:	make a service (the makefile differs from application makefiles).
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Basic Service defines one class: clsBasicService.
 It makes use of the following classes:

	clsClass
	clsService
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *									Files Used	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 The code for Basic Service is in \PENPOINT\SDK\SAMPLE\BASICSVC. The 
 files are:

	BASICSVC.C:	clsBasicSvc's code and initialization
	BASICSVC.H:	header file for clsBasicSvc
	DLL.LBC:	list of exported functions for the Watcom linker
	METHOD.TBL:	method table for clsBasicSvc.
*/ 

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Compiling	  							   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 To compile Basic Service, just 
	cd \penpoint\sdk\sample\basicsvc
	wmake
 This compiles the service, and creates BASICSVC.DLL in 
 \PENPOINT\SERVICE\BASICSVC.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Running	  								   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 After compiling Basic Service, you can run it by
    1) Booting PenPoint
	2) Tapping on the Connections Notebook to open it, and turning to 
	the Services page
	3) Installing Basic Service.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *									Testing	  							   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 To test Basic Service, check to make sure that you can install and
 deinstall it without getting any errors in PENPOINT.LOG. 
*/
