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.
22 lines
491 B
22 lines
491 B
#ifndef LSPRACT_DEFINED
|
|
#define LSPRACT_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "lsact.h"
|
|
|
|
#define prior0 0 /* means priority is not defined */
|
|
#define prior1 1
|
|
#define prior2 2
|
|
#define prior3 3
|
|
#define prior4 4
|
|
#define prior5 5
|
|
|
|
typedef struct lspract /* prioritized action */
|
|
{
|
|
BYTE prior; /* priority */
|
|
LSACT lsact; /* action */
|
|
} LSPRACT;
|
|
|
|
|
|
#endif /* !LSPRACTION_DEFINED */
|
|
|