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.
16 lines
354 B
16 lines
354 B
#ifndef LSPAIRAC_DEFINED
|
|
#define LSPAIRAC_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "lsact.h"
|
|
|
|
|
|
typedef struct lspairact /* Mod width pair unit */
|
|
{
|
|
LSACT lsactFirst; /* Action on first char */
|
|
LSACT lsactSecond; /* Action on second char */
|
|
} LSPAIRACT;
|
|
|
|
|
|
#endif /* !LSPAIRAC_DEFINED */
|
|
|