mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
15 lines
288 B
C#
15 lines
288 B
C#
namespace Robust.Shared.Interop.RobustNative.Vorbis;
|
|
|
|
internal unsafe partial struct vorbis_comment
|
|
{
|
|
[NativeTypeName("char **")]
|
|
public sbyte** user_comments;
|
|
|
|
public int* comment_lengths;
|
|
|
|
public int comments;
|
|
|
|
[NativeTypeName("char *")]
|
|
public sbyte* vendor;
|
|
}
|