mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-02 16:49:05 +00:00
12 lines
173 B
C++
12 lines
173 B
C++
#ifndef THREAD_HPP
|
|
#define THREAD_HPP
|
|
|
|
#include <3ds.h>
|
|
#include <vector>
|
|
|
|
namespace Threads {
|
|
void create(ThreadFunc entrypoint);
|
|
void destroy(void);
|
|
}
|
|
|
|
#endif |