mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-27 16:31:14 +00:00
25 lines
467 B
C
25 lines
467 B
C
/*!
|
|
* @file klisten.h
|
|
* Implementation of the Listener protocol
|
|
* Done
|
|
*/
|
|
|
|
#ifndef JAK_KLISTEN_H
|
|
#define JAK_KLISTEN_H
|
|
|
|
#include "kmachine.h"
|
|
#include "kscheme.h"
|
|
|
|
extern Ptr<Symbol> ListenerFunction;
|
|
extern Ptr<Symbol> kernel_dispatcher;
|
|
extern Ptr<u32> print_column;
|
|
extern Ptr<Symbol> kernel_packages;
|
|
|
|
void klisten_init_globals();
|
|
void InitListener();
|
|
void ClearPending();
|
|
void SendAck();
|
|
void ProcessListenerMessage(Ptr<char> msg);
|
|
|
|
#endif // JAK_KLISTEN_H
|