You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
298 B
18 lines
298 B
//========== Copyright © Valve Corporation, All rights reserved. ========
|
|
#ifndef JOB_NOTIFY_HDR
|
|
#define JOB_NOTIFY_HDR
|
|
|
|
#include "ps3/spu_job_shared.h"
|
|
|
|
namespace job_notify
|
|
{
|
|
struct ALIGN16 NotifyArea_t
|
|
{
|
|
uint32 m_nCopyTo;
|
|
uint32 m_nCopyFrom;
|
|
uint32 m_nSpuId;
|
|
}ALIGN16_POST;
|
|
|
|
}
|
|
#endif
|
|
|