mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-23 08:18:41 +00:00
14 lines
278 B
C
Executable File
14 lines
278 B
C
Executable File
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef COMS_PLATFORM_WIN32_NETWORK_SOCKET_H
|
|
#define COMS_PLATFORM_WIN32_NETWORK_SOCKET_H
|
|
|
|
#define socket_close(sd) closesocket(sd); WSACleanup()
|
|
|
|
#endif |