mirror of https://github.com/ceph/go-ceph
16 lines
187 B
Go
16 lines
187 B
Go
|
// +build !luminous
|
||
|
|
||
|
package rbd
|
||
|
|
||
|
/*
|
||
|
|
||
|
#include <rbd/librbd.h>
|
||
|
|
||
|
extern void imageWatchCallback(int index);
|
||
|
|
||
|
void callWatchCallback(int index) {
|
||
|
imageWatchCallback(index);
|
||
|
}
|
||
|
*/
|
||
|
import "C"
|