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.
19 lines
431 B
19 lines
431 B
#ifndef BRKO_DEFINED
|
|
#define BRKO_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "pbrko.h"
|
|
#include "objdim.h"
|
|
#include "posichnk.h"
|
|
#include "brkcond.h"
|
|
|
|
typedef struct brkout /* break output */
|
|
{
|
|
BOOL fSuccessful; /* break result */
|
|
BRKCOND brkcond; /* iff !fSuccessful, recommendation on the other side */
|
|
POSICHNK posichnk;
|
|
OBJDIM objdim;
|
|
} BRKOUT;
|
|
|
|
|
|
#endif /* !BRKO_DEFINED */
|