mirror of
https://github.com/AxioDL/PrimeAPI.git
synced 2026-03-30 11:38:46 -07:00
15 lines
244 B
C++
15 lines
244 B
C++
#ifndef CARCHITECTUREQUEUE_HPP
|
|
#define CARCHITECTUREQUEUE_HPP
|
|
|
|
#include <Runtime/CArchitectureMessage.hpp>
|
|
|
|
class CArchitectureQueue
|
|
{
|
|
public:
|
|
PADDING(8);
|
|
|
|
void InsertMsg(const CArchitectureMessage&);
|
|
};
|
|
|
|
#endif // CARCHITECTUREQUEUE_HPP
|