mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 00:00:42 +01:00
9 lines
140 B
C++
9 lines
140 B
C++
#pragma once
|
|
|
|
namespace orbis {
|
|
struct SocketAddress {
|
|
unsigned char len;
|
|
unsigned char family;
|
|
char data[14];
|
|
};
|
|
} // namespace orbis
|