(root)/
libredwg-0.13/
test/
unit-testing/
jump.c
       1  // r10-r11 only
       2  #define DWG_TYPE DWG_TYPE_JUMP
       3  #include "common.c"
       4  
       5  void
       6  api_process (dwg_object *obj)
       7  {
       8  #ifdef USE_WRITE
       9    int error;
      10    BITCODE_RL jump_address_raw;
      11    BITCODE_RL jump_address;
      12    unsigned jump_entity_section;
      13    dwg_ent_jump *jump = dwg_object_to_JUMP (obj);
      14  
      15    CHK_ENTITY_TYPE (jump, JUMP, jump_address_raw, RLx);
      16    CHK_ENTITY_TYPE (jump, JUMP, jump_address, RLx);
      17    CHK_ENTITY_TYPE (jump, JUMP, jump_entity_section, RLx);
      18  #endif
      19  }