6 lines
144 B
C
Raw Normal View History

2022-05-21 19:58:09 +02:00
#pragma once
#include <functional>
typedef std::function<void(void)> ThreadStart;
typedef std::function<void(void*)> ParameterizedThreadStart;