mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
9 lines
133 B
C++
9 lines
133 B
C++
#pragma once
|
|
|
|
template <typename Traits>
|
|
struct EMU_WSABUF
|
|
{
|
|
ULONG len;
|
|
EMULATOR_CAST(typename Traits::PVOID, CHAR*) buf;
|
|
};
|