home *** CD-ROM | disk | FTP | other *** search
- { IsNewKey: A function for determining whether
- a 101/102-key keyboard is attached to the
- user's system.
-
- (c) 1990 by George W. Seaton
- All Rights Reserved }
-
- FUNCTION IsNewKey : Boolean;
- BEGIN
- IF ((Mem[$0040:$0096] AND $10) = $10) THEN
- IsNewKey := TRUE
- ELSE
- IsNewKey := FALSE;
- END;