C#实现软件加壳


C#实现软件加壳
资源截图
代码片段和文件信息
// DLL Control.cpp : Defines the entry point for the DLL application.
//

#include “stdafx.h“


BOOL APIENTRY DllMain( HMODULE hModule
                       DWORD  ul_reason_for_call
                       LPVOID lpReserved
 )
{
    return TRUE;
}

extern “C“ __declspec(dllexport) 
bool __stdcall MsgHandler( int MsgId
   char* MsgBody)
{
if (MsgId == -1) // This is the Initialization MsgID 
{
MessageBoxA(NULL “Protection Initialization“ “Message from DLL“ MB_OK | MB_ICONINFORMATION);
}
else if (MsgId == -2) // This is the Finalization MsgID 
{
MessageBoxA(NULL “Application is about to start“ “Message from DLL“ MB_OK | MB_ICONINFORMATION);
}
else
{
MessageBoxA(NULL MsgBody “Message from DLL“ MB_OK | MB_ICONINFORMATION);
}

// When we return “true“ we tell WinLicense that we have processed the message so WinLicense will not display
// the custom message 

return true;
}
 



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        699  2014-04-22 16:07  themidacustom_vmscisc32.vm

     文件        701  2014-04-22 16:07  themidacustom_vmscisc64.vm

     文件       1784  2014-04-22 16:07  themidacustom_vmsfish32_black.vm

     文件       1780  2014-04-22 16:07  themidacustom_vmsfish32_red.vm

     文件       1779  2014-04-22 16:07  themidacustom_vmsfish32_white.vm

     文件       1784  2014-04-22 16:07  themidacustom_vmsfish64_black.vm

     文件       1780  2014-04-22 16:07  themidacustom_vmsfish64_red.vm

     文件       1779  2014-04-22 16:07  themidacustom_vmsfish64_white.vm

     文件       3288  2014-04-22 16:07  themidacustom_vmspuma32_black.vm

     文件       3283  2014-04-22 16:07  themidacustom_vmspuma32_red.vm

     文件       3282  2014-04-22 16:07  themidacustom_vmspuma32_white.vm

     文件       3287  2014-04-22 16:07  themidacustom_vmspuma64_black.vm

     文件       3282  2014-04-22 16:07  themidacustom_vmspuma64_red.vm

     文件       3283  2014-04-22 16:07  themidacustom_vmspuma64_white.vm

     文件        702  2014-04-22 16:07  themidacustom_vms
isc32.vm

     文件        702  2014-04-22 16:07  themidacustom_vms
isc64.vm

     文件       3292  2014-04-22 16:07  themidacustom_vmsshark32_black.vm

     文件       3285  2014-04-22 16:07  themidacustom_vmsshark32_red.vm

     文件       3283  2014-04-22 16:07  themidacustom_vmsshark32_white.vm

     文件       3292  2014-04-22 16:07  themidacustom_vmsshark64_black.vm

     文件       3285  2014-04-22 16:07  themidacustom_vmsshark64_red.vm

     文件       3284  2014-04-22 16:07  themidacustom_vmsshark64_white.vm

     文件        112  2015-01-01 16:57  themidacustom_vmsThemida.url

     文件       2029  2014-04-22 16:07  themidacustom_vms iger32_black.vm

     文件       2025  2014-04-22 16:07  themidacustom_vms iger32_red.vm

     文件       2025  2014-04-22 16:07  themidacustom_vms iger32_white.vm

     文件       2062  2014-04-22 16:07  themidacustom_vms iger64_black.vm

     文件       2059  2014-04-22 16:07  themidacustom_vms iger64_red.vm

     文件       2057  2014-04-22 16:07  themidacustom_vms iger64_white.vm

     文件     116116  2007-05-09 10:20  themidalanguagesarabic.lng

............此处省略255个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)