Please wait until the page is fully downloaded and then press the "Expand" button or the blue line numbers.

0012001 /*
0012002 inet/mq.h
0012003 
0012004 Created:       Jan 3, 1992 by Philip Homburg
0012005 
0012006 Copyright 1995 Philip Homburg
0012007 */
0012008 
0012009 #ifndef INET__MQ_H
0012010 #define INET__MQ_H
0012011 
0012012 typedef struct mq
0012013 {
0012014          message mq_mess;
0012015          struct mq *mq_next;
0012016          int mq_allocated;
0012017 } mq_t;
0012018 
0012019 _PROTOTYPE( mq_t *mq_get, (void) );
0012020 _PROTOTYPE( void mq_free, (mq_t *mq) );
0012021 _PROTOTYPE( void mq_init, (void) );
0012022 
0012023 #endif /* INET__MQ_H */
0012024 
0012025 /*
0012026  * $PchId: mq.h,v 1.4 1995/11/21 06:40:30 philip Exp $
0012027  */