changeset 30:e59d39874274 MC_shared

Compiles, but does not yet run properly
author Some Random Person <seanhalle@yahoo.com>
date Tue, 13 Mar 2012 10:07:00 -0700
parents 7d35d7f42cd5
children 555cc068a79a
files PrivateQueue.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/PrivateQueue.h	Mon Mar 12 05:39:45 2012 -0700
     1.2 +++ b/PrivateQueue.h	Tue Mar 13 10:07:00 2012 -0700
     1.3 @@ -29,6 +29,7 @@
     1.4   }
     1.5  PrivQueueStruc;
     1.6  
     1.7 +typedef void  (*DynArrayFnPtr)  ( void * );  //fn has to cast void *
     1.8  
     1.9  PrivQueueStruc*  makePrivQ ( );
    1.10  void*            readPrivQ ( PrivQueueStruc *Q );
    1.11 @@ -37,5 +38,6 @@
    1.12  int              numInPrivQ( PrivQueueStruc *Q );
    1.13                      // false when full
    1.14  
    1.15 +
    1.16  #endif	/* _PRIVATE_QUEUE_H */
    1.17