📄 intercode.cpp
字号:
/********************************************************************
Copyright (c) Beijing Feitian Technologies
http://www.FTSafe.com
File : InterCode.cpp
Created: 2003/11/05
Author: yihai
Purpose: ?
Revision: ?
*********************************************************************/
#include <stdafx.h>
extern "C" DWORD g_shl_old_entry;
typedef void (*TPFN_OldEntry)();
extern "C" void EnterInternalShell()
{
MessageBox(0,"Internal Code",0,0);
TPFN_OldEntry pfnOldEntry = (TPFN_OldEntry)g_shl_old_entry;
pfnOldEntry(); //调用加壳前程序的入口位置
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -