//CALENDAR job card info //* //* Copyright (c) 1996, SAS Institute Inc. //* Unpublished - All Rights Reserved //* //* //* NAME: CALENDAR //* //* PURPOSE: This program demonstrates the use of the SAS/C FSSL. //* It implements a daily calendar, allowing you to //* enter reminders for different times during the day, //* scroll forward and backward and save the entries //* from one session to the next. //* //* See SAS/C Full Screen Support Library User's Guide, //* Second Edition, Chapter 3, pgs. 108-116. //* //* FUNCTION: Compile and link source files listed below. //* //* SOURCE: see prefix.SAMPLE.C members - //* CALENDAR //* //* MISC: SAS/C FSSL *must* be installed. //* A relative access file *must* be allocated as CALENDAR //* (characteristics: RECFM=FBS) //* //* NOTE: Verify the statements indicated by the "<== VERIFY" //* have been customized for the local environment. //**************************************************************** //* //******************** //* COMPILE AND LINK * //******************** //COMPLNK EXEC PROC=LC370CL,PARM.C='EXTNAME' //C.SYSIN DD DSN=prefix.SAMPLE.C(CALENDAR),DISP=SHR <== VERIFY //C.SYSLIN DD DSN=your.object.library(CALENDAR),DISP=SHR <== VERIFY //C.SYSLIB DD DSN=prefix.sasc.FSSL.MACLIBC,DISP=SHR <== VERIFY // DD DSN=prefix.sasc.MACLIBC,DISP=SHR <== VERIFY //LKED.SYSLMOD DD DSN=your.load.library(CALENDAR),DISP=SHR <== VERIFY //* //