Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:52

0001 /* 
0002 ** packetV1Public.h
0003 ** 
0004 ** Author: $Author: purschke $  
0005 **   Date: $Date: 2000/07/21 01:51:17 $ 
0006 ** 
0007 ** $Log: packetV1Public.h,v $
0008 ** Revision 1.1.1.1  2000/07/21 01:51:17  purschke
0009 ** mlp -- adding the new automakified "basic" module to CVS.
0010 **
0011 **
0012 ** Revision 1.3  1998/12/11 22:01:49  markacs
0013 ** (stephen markacs) adding log into cvs tags
0014 ** 
0015 */
0016 /*
0017 ** packetV1Public.h
0018 **
0019 **   This file contains enumerations, typedefs etc. that public 
0020 **   users of packet C and C++ routines might need. 
0021 **
0022 */
0023 
0024 #include "phenixOnline.h"
0025 
0026 #ifndef _PACKETV1PUBLIC_
0027 #define _PACKETV1PUBLIC_
0028 
0029 /*
0030 **  Use C linkage in C++ code
0031 */
0032 #ifdef __cplusplus
0033 extern "C" {
0034 #endif
0035 
0036   /*
0037   **  We point to packets using a PHDWORD pointer.
0038   */
0039   typedef PHDWORD* PACKETV1_ptr;
0040   
0041 #ifdef __cplusplus
0042 }  /* end extern C block */
0043 #endif
0044 
0045 #endif 
0046 /* end ifdef _PACKETV1PUBLIC_ */
0047 
0048 
0049 
0050 
0051 
0052 
0053 
0054