Differences From Artifact [135758e2d7]:
- File
src/protos.h
— part of check-in
[1ee33c9983]
at
2024-08-03 14:50:31
on branch trunk
— Don't depend on global constructors for commands
This breaks when using ObjC, as these can run before the ObjC module is initialized, resulting in non-working message sends as the selectors are not registered yet. (user: js, size: 9432) [annotate] [blame] [check-ins using]
To Artifact [93475710ee]:
- File src/protos.h — part of check-in [f8f97851f3] at 2024-08-03 17:02:33 on branch trunk — Make conoutf take an OFString (user: js, size: 9430) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
15 16 17 18 19 20 21 | extern void alias(char *name, char *action); extern char *getalias(char *name); extern void writecfg(); // console extern void keypress(int code, bool isdown, int cooked); extern void renderconsole(); | | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | extern void alias(char *name, char *action); extern char *getalias(char *name); extern void writecfg(); // console extern void keypress(int code, bool isdown, int cooked); extern void renderconsole(); extern void conoutf(OFString *s, ...); extern char *getcurcommand(); extern void writebinds(FILE *f); // init extern void enqueueInit(const char *name, void (^init)(void)); extern void processInitQueue(void); |
︙ | ︙ |