16 lines
191 B
C#
16 lines
191 B
C#
using System;
|
|
|
|
namespace Valve.VR
|
|
{
|
|
public struct NotificationBitmap_t
|
|
{
|
|
public IntPtr m_pImageData;
|
|
|
|
public int m_nWidth;
|
|
|
|
public int m_nHeight;
|
|
|
|
public int m_nBytesPerPixel;
|
|
}
|
|
}
|