aboutsummaryrefslogtreecommitdiff
path: root/client/libacron/private/win32.h
blob: 07cdca8eb0cccc1bcd64068e905ffe7740ae9111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Created by yuuta on 7/21/22.
 */

#ifndef LIBAC_WIN32_H
#define LIBAC_WIN32_H

#ifdef WIN32
#define _Thread_local __declspec( thread )
#else
#define SOCKET int
#define closesocket(socket) close(socket)
#endif

#endif /* LIBAC_WIN32_H */