mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
441 B
25 lines
441 B
// FRSelect.h -- Definitions and Prototypes for FRSelect.c
|
|
//
|
|
// Constructed 2/23/94 by RonM
|
|
|
|
#ifndef __FRSELECT_H__
|
|
|
|
#define __FRSELECT_H__
|
|
|
|
typedef char *QCH;
|
|
// typedef int INT
|
|
|
|
#define AttrNormalFnt (0) // also defined in winpmlyr\fontlyr.h
|
|
#define qNil (0)
|
|
#define hNil (0)
|
|
#define ifcmNil (-1)
|
|
|
|
#define NONE 1
|
|
#define UP 2
|
|
#define DOWN 3
|
|
#define LEFT 4
|
|
#define RIGHT 5
|
|
#define START 6
|
|
#define END 7
|
|
|
|
#endif // __FRSELECT_H__
|