aboutsummaryrefslogtreecommitdiff
path: root/testing/yup-comm/mailslot.h
blob: 78fc0d966be5040e187bd7edcabe5010d752971d (plain)
1
2
3
4
5
6
7
8
9
/* Author: Jan Sucan */

#include <windows.h>

HANDLE   mailslot_create(const char * const name);
unsigned mailslot_read(HANDLE slot, char * const buf, unsigned buf_size);
HANDLE   mailslot_connect(const char * const name);
int      mailslot_write(HANDLE slot, char * const buf, unsigned buf_size);
void     mailslot_close(HANDLE slot);