Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/IMB_allocimbuf.h
| Show All 26 Lines | |||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct ImBuf; | struct ImBuf; | ||||
| void imb_refcounter_lock_init(void); | void imb_refcounter_lock_init(void); | ||||
| void imb_refcounter_lock_exit(void); | void imb_refcounter_lock_exit(void); | ||||
| #ifdef WIN32 | #ifndef WIN32 | ||||
| void imb_mmap_lock_init(void); | void imb_mmap_lock_init(void); | ||||
| void imb_mmap_lock_exit(void); | void imb_mmap_lock_exit(void); | ||||
| void imb_mmap_lock(void); | void imb_mmap_lock(void); | ||||
| void imb_mmap_unlock(void); | void imb_mmap_unlock(void); | ||||
| #else | #else | ||||
| # define imb_mmap_lock_init() | # define imb_mmap_lock_init() | ||||
| # define imb_mmap_lock_exit() | # define imb_mmap_lock_exit() | ||||
| # define imb_mmap_lock() | # define imb_mmap_lock() | ||||
| Show All 9 Lines | |||||