blitz_handle.h 274 B

123456789101112131415161718192021
  1. #ifndef BLITZ_HANDLE_H
  2. #define BLITZ_HANDLE_H
  3. #include "blitz_types.h"
  4. #ifdef __cplusplus
  5. extern "C"{
  6. #endif
  7. int bbHandleFromObject( BBObject *o );
  8. BBObject* bbHandleToObject( int handle );
  9. void bbHandleRelease( int handle );
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif