(root)/
libredwg-0.13/
test/
unit-testing/
skylight_background.c
       1  // unstable, with coverage
       2  #define DWG_TYPE DWG_TYPE_SKYLIGHT_BACKGROUND
       3  #include "common.c"
       4  
       5  void
       6  api_process (dwg_object *obj)
       7  {
       8    int error = 0, isnew;
       9    BITCODE_BL class_version;
      10    BITCODE_H sunid;
      11  
      12    Dwg_Version_Type dwg_version = obj->parent->header.version;
      13    dwg_obj_skylight_background *_obj = dwg_object_to_SKYLIGHT_BACKGROUND (obj);
      14  
      15    CHK_ENTITY_TYPE (_obj, SKYLIGHT_BACKGROUND, class_version, BL);
      16    CHK_ENTITY_H (_obj, SKYLIGHT_BACKGROUND, sunid);
      17  }