mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
14 lines
273 B
Go
14 lines
273 B
Go
|
package rbd
|
||
|
|
||
|
/*
|
||
|
|
||
|
#include <rbd/librbd.h>
|
||
|
|
||
|
extern int diffIterateCallback(uint64_t ofs, size_t len, int exists, int index);
|
||
|
|
||
|
int callDiffIterateCallback(uint64_t ofs, size_t len, int exists, int index) {
|
||
|
return diffIterateCallback(ofs, len, exists, index);
|
||
|
}
|
||
|
*/
|
||
|
import "C"
|