(root)/
libredwg-0.13/
test/
unit-testing/
endrep.c
       1  // preR13 only
       2  #define DWG_TYPE DWG_TYPE_ENDREP
       3  #include "common.c"
       4  
       5  void
       6  api_process (dwg_object *obj)
       7  {
       8    int error;
       9    BITCODE_RS numcols, numrows;
      10    BITCODE_RD colspacing, rowspacing;
      11  
      12    dwg_ent_endrep *_obj = dwg_object_to_ENDREP (obj);
      13  
      14    CHK_ENTITY_TYPE (_obj, ENDREP, numcols, RS);
      15    CHK_ENTITY_TYPE (_obj, ENDREP, numrows, RS);
      16    CHK_ENTITY_TYPE (_obj, ENDREP, colspacing, RD);
      17    CHK_ENTITY_TYPE (_obj, ENDREP, rowspacing, RD);
      18  }