old-DasOS/prototypes/include/exceptions.hpp
2016-06-26 18:48:36 +02:00

10 lines
No EOL
176 B
C++

#pragma once
#include "enums.hpp"
enum class Exception
{
#define EXCEPTION(num, shorthand, ident, desc, type) ident = num,
#include "lists/exceptions.lst"
#undef EXCEPTION
};