mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +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
|