Files
ma/src/client_backend/thread_ctrl.h

11 lines
187 B
C++

#pragma once
#ifndef THREAD_CTRL_H
#define THREAD_CTRL_H
#include <iostream>
#include <Windows.h>
#include <thread>
#include <mutex>
int start_thread(const std::string& command);
#endif