mirror of
https://github.com/sheumann/DiskBrowser.git
synced 2024-11-01 01:05:12 +00:00
11 lines
196 B
C
11 lines
196 B
C
|
#ifndef TCPCONNECTION_H
|
||
|
#define TCPCONNECTION_H
|
||
|
|
||
|
#include "session.h"
|
||
|
#include "netdiskerror.h"
|
||
|
|
||
|
enum NetDiskError StartTCPConnection(Session *sess);
|
||
|
void EndTCPConnection(Session *sess);
|
||
|
|
||
|
#endif
|