AFPBridge/dsi.h
Stephen Heumann b5c3a29f37 Initial version, with test program.
It can currently send a GetStatus request and get a response.
2017-03-18 19:42:25 -05:00

11 lines
191 B
C

#ifndef DSI_H
#define DSI_H
#include "dsiproto.h"
#include "session.h"
void SendDSIMessage(Session *sess, DSIRequestHeader *header, void *payload);
void PollForData(Session *sess);
#endif