mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
25 lines
331 B
C++
25 lines
331 B
C++
#ifndef STARTUP_CODE_H
|
|
#define STARTUP_CODE_H
|
|
|
|
|
|
#include "Opcode.h"
|
|
|
|
// CStartupCode
|
|
class CStartupCode
|
|
{
|
|
public:
|
|
|
|
enum Defaults {
|
|
c_nDefaultSize = 42
|
|
};
|
|
|
|
CStartupCode();
|
|
virtual ~CStartupCode();
|
|
virtual void Serialize(CArchive& ar);
|
|
|
|
private:
|
|
COpcode m_Code[17];
|
|
};
|
|
|
|
#endif
|