17 lines
484 B
C
17 lines
484 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "networkpsp.h"
|
|
|
|
#define networkPlatformInit networkPSPInit
|
|
#define networkPlatformUpdate networkPSPUpdate
|
|
#define networkPlatformDispose networkPSPDispose
|
|
#define networkPlatformIsConnected networkPSPIsConnected
|
|
#define networkPlatformRequestConnection networkPSPRequestConnection
|
|
|
|
typedef networkpsp_t networkplatform_t; |