24 lines
664 B
C
24 lines
664 B
C
#pragma once
|
|
|
|
#pragma warning(disable:4786) // character 255 ³Ñ¾î°¡´Â°Å ²ô±â
|
|
|
|
//#include <crtdbg.h>
|
|
#include <granny.h>
|
|
|
|
#include "../eterBase/Utils.h"
|
|
#include "../eterBase/Debug.h"
|
|
#include "../eterBase/Stl.h"
|
|
|
|
#include "Util.h"
|
|
|
|
// Armadillo nanomite protection
|
|
#ifndef NANOBEGIN
|
|
#ifdef __BORLANDC__
|
|
#define NANOBEGIN __emit__ (0xEB,0x03,0xD6,0xD7,0x01)
|
|
#define NANOEND __emit__ (0xEB,0x03,0xD6,0xD7,0x00)
|
|
#else
|
|
#define NANOBEGIN __asm _emit 0xEB __asm _emit 0x03 __asm _emit 0xD6 __asm _emit 0xD7 __asm _emit 0x01
|
|
#define NANOEND __asm _emit 0xEB __asm _emit 0x03 __asm _emit 0xD6 __asm _emit 0xD7 __asm _emit 0x00
|
|
#endif
|
|
#endif
|