mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
31 lines
338 B
C++
31 lines
338 B
C++
#ifndef STDAFX_H
|
|
#define STDAFX_H
|
|
|
|
// C++ standard includes
|
|
#include <cstdint>
|
|
|
|
// int2ssl includes
|
|
#include "Hacks/Types.h"
|
|
#include "Hacks/CArray.h"
|
|
|
|
// Third party includes
|
|
|
|
class CDWordArray : public CArray<uint16_t, uint16_t>
|
|
{
|
|
|
|
};
|
|
|
|
class UserException
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void AfxThrowUserException();
|
|
|
|
|
|
#endif
|