Files
Aerofoil/PortabilityLayer/HostSuspendCallArgument.h

20 lines
316 B
C
Raw Normal View History

2019-11-11 00:11:59 -05:00
#pragma once
#include <stdint.h>
2021-03-18 17:08:11 -04:00
#include <stddef.h>
2019-11-11 00:11:59 -05:00
#include "HostSuspendCallID.h"
namespace PortabilityLayer
{
union HostSuspendCallArgument
{
uint32_t m_uint;
int32_t m_int;
size_t m_size;
void *m_pointer;
const void *m_constPointer;
void (*m_functionPtr)(void *context);
2019-11-11 00:11:59 -05:00
};
}