Windows: implement oio_ref and oio_unref

This commit is contained in:
Bert Belder 2011-05-08 00:18:08 +02:00
parent bba0f79b32
commit 98cd0811cb

View File

@ -1145,3 +1145,13 @@ int oio_run() {
assert(oio_refs_ == 0);
return 0;
}
void oio_ref() {
oio_refs_++;
}
void oio_unref() {
oio_refs_--;
}