diff Vector.h @ 1:2698781db812

Not sure changes -- not being used in VMSHW_matrix_mult
author Me
date Wed, 28 Jul 2010 13:14:00 -0700
parents b1f178ed41a3
children
line diff
     1.1 --- a/Vector.h	Sat May 22 19:51:49 2010 -0700
     1.2 +++ b/Vector.h	Wed Jul 28 13:14:00 2010 -0700
     1.3 @@ -8,6 +8,8 @@
     1.4  #ifndef _VECTOR_H
     1.5  #define	_VECTOR_H
     1.6  
     1.7 +#include "../VMS_primitive_data_types.h"
     1.8 +
     1.9  //Doing one special cheat -- hiding a back-ptr in front of array
    1.10  typedef struct
    1.11   {
    1.12 @@ -18,7 +20,7 @@
    1.13  Vector;
    1.14  
    1.15  Vector *createVect        ( int32 initialSizeOfArray );
    1.16 -Vector *increaseSizeOfVect( Vector *vect );
    1.17 +void    increaseSizeOfVect( Vector *vect );
    1.18  bool8   addToVect         ( void *ptrToAdd, Vector *vect );
    1.19  bool8   removeLastInVect  ( Vector *vect );
    1.20