mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 13:50:46 +01:00
12 lines
166 B
C
12 lines
166 B
C
#pragma once
|
|
|
|
#include "sceNpCommon.h"
|
|
|
|
struct SceNpBandwidthTestResult
|
|
{
|
|
le_t<double> uploadBps;
|
|
le_t<double> downloadBps;
|
|
le_t<s32> result;
|
|
char padding[4];
|
|
};
|