1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/thirdparty/picoev/src/picoev_w32.h
2020-01-23 03:26:30 +01:00

16 lines
326 B
C

#ifndef picoev_w32_h
#define picoev_w32_h
#include "picoev.h"
#ifndef PICOEV_W32_INTERNAL
extern int picoev_w32_init(int);
extern int picoev_w32_deinit(void);
extern int picoev_w32_sock2fd(int);
extern int picoev_w32_fd2sock(int);
# define picoev_init picoev_w32_init
# define picoev_deinit picoev_w32_deinit
#endif
#endif