marlene/marinetti.h

23 lines
369 B
C
Raw Normal View History

2018-05-11 01:06:58 +00:00
#ifndef __marinetti_h__
#define __marinetti_h__
2018-04-21 19:30:26 +00:00
#include <types.h>
2018-05-11 01:06:58 +00:00
enum {
kLoaded = 1,
kStarted = 2,
kConnected = 4,
2018-04-21 19:30:26 +00:00
2018-05-11 01:06:58 +00:00
kLoadError = -1,
kVersionError = -2
2018-04-21 19:30:26 +00:00
};
2018-05-11 01:06:58 +00:00
Word ResolveHost(const char *name, cvtRecPtr cvt);
int WaitForStatus(word ipid, word status_mask);
int StartUpTCP(displayPtr fx);
void ShutDownTCP(int flags, Boolean force, displayPtr fx);
2018-04-21 19:30:26 +00:00
#endif