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

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

 $Revision:   1.2  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:40:02  $

 Test Service is a starter kit for most service writers. It has
 message handler stubs for the most common service messages.

 For other examples of services, see the BASICSVC and MILSVC samples.
****************************************************************************/

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

	-:	make a service (the makefile differs from application makefiles)
	-:	define handlers for messages sent to a class.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Test Service defines two classes: clsTestService and clsTestOpenObject.
 It makes use of the following classes:

	clsButton
	clsClass
	clsFileHandle
	clsOpenServiceObject
	clsOptionTable
	clsService
*/

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

	DLL.LBC:	list of exported functions for the Watcom linker
	METHOD.TBL:	method table for the classes defined in Test Service
	OPENOBJ.C:	clsTestOpenObject's code and initialization
	OPENOBJ.H:	header file for clsTestOpenObject
	TESTSVC.C:	clsTestService's code and initialization
	TESTSVC.H:	header file for clsTestService.
*/ 

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

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Running	  								   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 After compiling Test 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 Test Service
*/

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