![]() |
VR-Link API Documentation for HLA 1516
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 #ifndef apSpec_h_ 00007 #define apSpec_h_ 00008 00009 #include <stdlib.h> 00010 00014 00015 const int DtMAX_PARAMS_PER_PART = 31; 00016 00017 typedef struct DtArtPartSpec 00018 { 00019 int partType; 00020 int attachedType; 00021 int params[DtMAX_PARAMS_PER_PART]; 00022 } DtArtPartSpec; 00023 00024 const int DtAttachedToBase = 0; 00025 #define DtNoArtParts ((DtArtPartSpec*) NULL) 00026 #define DtNullArtPartSpec 0,0,{0} 00027 00028 #endif 00029