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