ds.h 286 B

1234567891011121314151617
  1. #ifdef WIN32
  2. /*
  3. Ds.h
  4. */
  5. #ifndef BIDON_DS
  6. #define BIDON_DS
  7. typedef int ds_t;
  8. int ds_register();
  9. int ds_get(ds_t ds,char *,char *,int);
  10. int ds_set(ds_t dsdes,const char* variable_name,const char* variable_data,size_t data_len );
  11. void ds_deregister(ds_t);
  12. #endif
  13. #endif