(root)/
libredwg-0.13/
test/
unit-testing/
dictionaryvar.c
       1  #define DWG_TYPE DWG_TYPE_DICTIONARYVAR
       2  #include "common.c"
       3  
       4  void
       5  api_process (dwg_object *obj)
       6  {
       7    int error, isnew;
       8    BITCODE_RC schema;
       9    BITCODE_TV strvalue;
      10  
      11    Dwg_Version_Type dwg_version = obj->parent->header.version;
      12    dwg_obj_dictionaryvar *_obj = dwg_object_to_DICTIONARYVAR (obj);
      13  
      14    CHK_ENTITY_TYPE (_obj, DICTIONARYVAR, schema, RC);
      15    CHK_ENTITY_UTF8TEXT (_obj, DICTIONARYVAR, strvalue);
      16  }