19 lines
638 B
C
19 lines
638 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "networksocketdolphin.h"
|
|
|
|
#define networksocketPlatformInit networksocketDolphinInit
|
|
#define networksocketPlatformConnect networksocketDolphinConnect
|
|
#define networksocketPlatformSend networksocketDolphinSend
|
|
#define networksocketPlatformRecv networksocketDolphinRecv
|
|
#define networksocketPlatformDisconnect networksocketDolphinDisconnect
|
|
#define networksocketPlatformDispose networksocketDolphinDispose
|
|
|
|
typedef networksocketdolphin_t networksocketplatform_t;
|