latest SDK

This commit is contained in:
2021-12-14 00:28:25 -07:00
commit 68b10d413b
492 changed files with 80542 additions and 0 deletions

10
foobar2000/SDK/foosort.h Normal file
View File

@@ -0,0 +1,10 @@
#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);
}