Subversion Repositories Games.Carmageddon

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _ASSOCARR_H_
  2. #define _ASSOCARR_H_
  3.  
  4. #include "brender/br_types.h"
  5.  
  6. br_associative_array* BrAssociativeArrayAllocate(void);
  7.  
  8. br_error Set_Associative_Array_Value(br_associative_array* pArray, int index, br_value v);
  9.  
  10. br_error BrAssociativeArraySetEntry(br_associative_array* pArray, br_token t, br_value v);
  11.  
  12. br_error BrAssociativeArrayRemoveEntry(br_associative_array* pArray, br_token t);
  13.  
  14. br_error BrAssociativeArrayQuery(br_associative_array* pArray, br_token t, br_value* pValue);
  15.  
  16. #endif
  17.