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-12-02 17:47:47 +03:00

21 lines
275 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)());
};