summaryrefslogtreecommitdiff
path: root/command_line/CmdLine/Src/Envir/CLIO.c
blob: ac58506ef7560bbeaf285183317542cc85b779d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#include "mwcc_decomp.h"

static void catchinterrupt() {

}

static void SetupConsoleInfo() {

}

static void Crash() {

}

void SetupDebuggingTraps() {

}

Boolean IO_Initialize() {

}

Boolean IO_Terminate() {

}

Boolean IO_HelpInitialize() {

}

Boolean IO_HelpTerminate() {

}

static Boolean SendHandleToFile(FILE *file, OSHandle *text) {

}

void FixHandleForIDE(OSHandle *text) {

}

Boolean ShowHandle(OSHandle *text, Boolean decorate) {

}

Boolean WriteHandleToFile(OSSpec *spec, OSHandle *text, CWDataType creator, CWDataType type) {

}

Boolean WriteBinaryHandleToFile(OSSpec *spec, CWDataType maccreator, CWDataType mactype, OSHandle *text) {

}

Boolean AppendHandleToFile(OSSpec *spec, OSHandle *text, CWDataType maccreator, CWDataType mactype) {

}

void InitWorking() {

}

void ShowWorking() {

}

void TermWorking() {

}

static void ProgressFunction(const char *functionname) {

}

Boolean CheckForUserBreak() {

}

typedef struct {
    char *buffer;
    int pos;
    int maxlen;
    SInt16 col;
    Boolean origina;
    char *newline;
} UnkCLIOStruct;

static void StartLine(UnkCLIOStruct *f) {

}

static void WrapText(UnkCLIOStruct *f) {

}

static char *IO_VFormatText(char *buffer, SInt32 size, char *newline, const char *format, va_list ap) {

}

char *IO_FormatText(char *buffer, SInt32 size, char *newline, const char *format, ...) {

}

void CLPrintDispatch(SInt16 msgtype, const char *message, FILE *out, char *ptr, char *nptr) {

}

static void GetFileInfo(MessageRef *ref) {

}

static char *Arrows(MessageRef *ref) {

}

static Boolean IsLikelyAnImporter(Plugin *plugin) {

}

static char *GuessTool(Plugin *plugin) {

}

static char *GuessDoing(Plugin *plugin) {

}

static void styledMessage_MPW(Plugin *plugin, MessageRef *ref, SInt16 msgType, const char *format, va_list va) {

}

static void styledMessage_Default(Plugin *plugin, MessageRef *ref, SInt16 msgType, const char *format, va_list va) {

}

static void styledMessage_Terse(Plugin *plugin, MessageRef *ref, SInt16 msgType, const char *format, va_list va) {

}

static void styledMessage_IDE(Plugin *plugin, MessageRef *ref, SInt16 msgType, const char *format, va_list va) {

}

static void styledMessage_Parseable(Plugin *plugin, MessageRef *ref, SInt16 msgType, const char *format, va_list va) {

}

void CLPrintType(SInt16 msgtype, ...) {

}

void CLPrint(SInt16 msgtype, ...) {

}

void CLPrintWarning(SInt16 msgtype, ...) {

}

void CLPrintErr(SInt16 msgtype, ...) {

}

static void FixupMessageRef(MessageRef *ref) {

}

SInt16 CLStyledMessageDispatch(Plugin *plugin, MessageRef *ref, SInt32 errorNumber, SInt16 msgType) {

}