(root)/
libredwg-0.13/
test/
unit-testing/
load.c
       1  // pre2.0 only
       2  #define DWG_TYPE DWG_TYPE_LOAD
       3  #include "common.c"
       4  
       5  void
       6  api_process (dwg_object *obj)
       7  {
       8  #ifdef USE_WRITE
       9    int error;
      10    char *file_name;
      11    int isnew;
      12    dwg_ent_load *load = dwg_object_to_LOAD (obj);
      13  
      14    CHK_ENTITY_UTF8TEXT (load, LOAD, file_name);
      15  #endif
      16  }