Files
foobar2000-sdk/foobar2000/SDK/foosort.h
2021-12-14 00:28:25 -07:00

11 lines
282 B
C++

#pragma once
namespace fb2k {
// foosort
// abortable multithreaded quicksort
// expects cb to handle concurrent calls as long as they do not touch the same items concurrently
void sort(pfc::sort_callback & cb, size_t count, size_t concurrency, abort_callback & aborter);
}