Intermec 6100 Reference Guide

Page of 328
APPENDIX A
Sample Configuration Files
A-16    PEN*KEY
R
 6100 Computer Programmer’s Reference Guide
EXAMPLE:
Sample CONFIG.SYS Code for Handwriting Recognition
shell=d:\command.com d:\ /e:512 /p
device=d:\himem.sys /machine:2
devicehigh=d:\elanump.sys /x=C000,D400,D800,DC00,E000
device=a:\emm386.exe i=D400–EFFF FRAME=D400
device=d:\elanapm.exe
devicehigh=A:\nordosppm.exe
dos=high,umb
break=on
buffers=30
files=50
EXAMPLE:
Sample PENDOSEM.BAT Code for Handwriting Recognition
@ECHO off
REM %1 is the prefix for all files here
LH %1VLOAD %1USAREC.EXP
LH $1EMUL1X
SET PENDOS12=D9
APM Event Code Broadcast Values
//––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
// APM 1.1 BIOS event codes.
// These codes are broadcast to DOS TSR’s by the APM OS Driver.
//
System Standby Request Notification
#define APM_STANDBYREQUEST
1
//
System Suspend Request Notification
#define APM_SUSPENDREQUEST
2
//
Normal Resume System Notification
#define APM_SUSPENDRESUME
3
//
Critical Resume System Notification
#define APM_CRITICALRESUME
4
//
Battery Low Notification
#define APM_BATLOW
5
//
User System Standby Request Notification
#define APM_USERSTANDBY
9
//
User System Suspend Request Notification
#define APM_USERSUSPEND
10
//
User System Standby Resume Notification
#define APM_USERSTANDBYRESUME 11
//
Status Request – Ok to suspend?
#define APM_STATUS
0xFF
//––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
// Windows APM 1.1 event codes.  These events are broadcast to the Windows 
// drivers and parent-windows by the Windows APM driver.  Note that these codes 
// are one less than the corresponding BIOS codes.  Also, only three codes, 1–3,
// are actually defined in the current Windows 3.1 WINDOWS.H header file.
//
System Standby Request Notification
#define PWR_STANDBYREQUEST
0
//
System Suspend Request Notification
#define PWR_SUSPENDREQUEST
1
//
Normal Resume System Notification
#define PWR_SUSPENDRESUME
2
//
Critical Resume System Notification
#define PWR_CRITICALRESUME
3
//
Critical System Suspend Notification
#define PWR_CRITICALSUSPEND
7
//
User System Standby Request Notification
#define PWR_USERSTANDBY
8
//
User System Suspend Request Notification
#define PWR_USERSUSPEND
9
//
User System Standby Resume Notification
#define PWR_USERSTANDBYRESUME 10
A. Sample
Configuration Files