mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
37 lines
376 B
C++
37 lines
376 B
C++
#ifndef STDAFX_H
|
|
#define STDAFX_H
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
#include <fstream>
|
|
|
|
#include "Hacks/Types.h"
|
|
#include "Hacks/CArray.h"
|
|
|
|
class CString;
|
|
|
|
|
|
class CDWordArray : public CArray<WORD, WORD>
|
|
{
|
|
|
|
};
|
|
|
|
class CStringArray : public CArray<CString, CString>
|
|
{
|
|
|
|
};
|
|
|
|
class UserException
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void AfxThrowUserException();
|
|
|
|
|
|
#endif
|