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.
18 lines
268 B
18 lines
268 B
/*
|
|
J. Keslin
|
|
|
|
Definition of the range structure and return codes from
|
|
OISetupRangeSelection.
|
|
|
|
*/
|
|
|
|
typedef struct range_d
|
|
{
|
|
DWORD dwStartPos;
|
|
DWORD dwEndPos;
|
|
} OIRANGE, FAR *LPOIRANGE;
|
|
|
|
#define OI_RANGEINSERTED 0
|
|
#define OI_RANGELIMIT 1
|
|
|
|
#include "oirange.pro"
|