1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

pico.v and dependencies

This commit is contained in:
S-YOU
2020-01-23 11:26:30 +09:00
committed by Alexander Medvednikov
parent 5c6032d272
commit 7b345e207d
19 changed files with 2475 additions and 0 deletions

15
thirdparty/picoev/src/picoev_w32.h vendored Normal file
View File

@ -0,0 +1,15 @@
#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