This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/init.hpp
2017-11-13 09:41:53 +03:00

20 lines
270 B
C++

/*
* init.hpp
*
* Created on: Jul 27, 2017
* Author: nullifiedcat
*/
#pragma once
#include <aftercheaders.hpp>
#include <beforecheaders.hpp>
#include <stack>
std::stack<void(*)()>& init_stack();
class InitRoutine {
public:
InitRoutine(void(*func)());
};