mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
19 lines
365 B
C#
19 lines
365 B
C#
namespace Robust.Shared.Interop.RobustNative.Ogg;
|
|
|
|
internal unsafe partial struct oggpack_buffer
|
|
{
|
|
[NativeTypeName("long")]
|
|
public CLong endbyte;
|
|
|
|
public int endbit;
|
|
|
|
[NativeTypeName("unsigned char *")]
|
|
public byte* buffer;
|
|
|
|
[NativeTypeName("unsigned char *")]
|
|
public byte* ptr;
|
|
|
|
[NativeTypeName("long")]
|
|
public CLong storage;
|
|
}
|