mirror of
https://github.com/sheumann/AFPBridge.git
synced 2024-11-01 01:05:06 +00:00
12 lines
231 B
C
12 lines
231 B
C
#ifndef DSI_H
|
|
#define DSI_H
|
|
|
|
#include "dsiproto.h"
|
|
#include "session.h"
|
|
|
|
void SendDSIMessage(Session *sess, DSIRequestHeader *header, void *payload,
|
|
void *extraPayload);
|
|
void PollForData(Session *sess);
|
|
|
|
#endif
|