18 lines
265 B
C#
18 lines
265 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace LibreMetaverse.Imaging
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct J2KBuffer
|
|
{
|
|
|
|
public IntPtr Data;
|
|
|
|
public int Length;
|
|
|
|
public int Position;
|
|
|
|
}
|
|
}
|