资源简介
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 themida\custom_vms\cisc32.vm
文件 701 2014-04-22 16:07 themida\custom_vms\cisc64.vm
文件 1784 2014-04-22 16:07 themida\custom_vms\fish32_black.vm
文件 1780 2014-04-22 16:07 themida\custom_vms\fish32_red.vm
文件 1779 2014-04-22 16:07 themida\custom_vms\fish32_white.vm
文件 1784 2014-04-22 16:07 themida\custom_vms\fish64_black.vm
文件 1780 2014-04-22 16:07 themida\custom_vms\fish64_red.vm
文件 1779 2014-04-22 16:07 themida\custom_vms\fish64_white.vm
文件 3288 2014-04-22 16:07 themida\custom_vms\puma32_black.vm
文件 3283 2014-04-22 16:07 themida\custom_vms\puma32_red.vm
文件 3282 2014-04-22 16:07 themida\custom_vms\puma32_white.vm
文件 3287 2014-04-22 16:07 themida\custom_vms\puma64_black.vm
文件 3282 2014-04-22 16:07 themida\custom_vms\puma64_red.vm
文件 3283 2014-04-22 16:07 themida\custom_vms\puma64_white.vm
文件 702 2014-04-22 16:07 themida\custom_vms\risc32.vm
文件 702 2014-04-22 16:07 themida\custom_vms\risc64.vm
文件 3292 2014-04-22 16:07 themida\custom_vms\shark32_black.vm
文件 3285 2014-04-22 16:07 themida\custom_vms\shark32_red.vm
文件 3283 2014-04-22 16:07 themida\custom_vms\shark32_white.vm
文件 3292 2014-04-22 16:07 themida\custom_vms\shark64_black.vm
文件 3285 2014-04-22 16:07 themida\custom_vms\shark64_red.vm
文件 3284 2014-04-22 16:07 themida\custom_vms\shark64_white.vm
文件 112 2015-01-01 16:57 themida\custom_vms\Themida.url
文件 2029 2014-04-22 16:07 themida\custom_vms\tiger32_black.vm
文件 2025 2014-04-22 16:07 themida\custom_vms\tiger32_red.vm
文件 2025 2014-04-22 16:07 themida\custom_vms\tiger32_white.vm
文件 2062 2014-04-22 16:07 themida\custom_vms\tiger64_black.vm
文件 2059 2014-04-22 16:07 themida\custom_vms\tiger64_red.vm
文件 2057 2014-04-22 16:07 themida\custom_vms\tiger64_white.vm
文件 116116 2007-05-09 10:20 themida\languages\arabic.lng
............此处省略255个文件信息
- 上一篇:ASP.NET网络书店(C#全源码提供)
- 下一篇:企业人事管理系统C#源代码
相关资源
- asp.net实现qq登陆
- c# 开发与 mysql数据库实现的增删改查
- [源代码] 《领域驱动设计 (C# 2008 实
- ASP.NET+SQL Server 2008 实现的学生学籍管
- c#实现图像的缩小和放大,不失真!
- 用C#实现PC与西门子PLC串行通讯
- C#中二维码实现源代码修正版
- C#调用Lucene方法-实现快速搜索
- C# 实现局域网视频监控Socket 编程
- C#实现高斯正反算
- 基于C#与Mwic_32.dll编写的IC刷卡读写考
- C#实现将WPF字体呈现到OpenGL 支持汉字
- c#宾馆管理系统实现—功能全
- 100多个C#合集
- SQLserver+C#实现的KTV点歌系统 有数据库
- c#绘图实现公章-唐大仕课程
- C# 实现GPS交互
- ASP.NET校园新闻发布系统设计与实现毕
- 用C#实现木马程序分析
- C#基于wpf实现的天气日历生活助手
- C#实现封装SPC过程能力工具类ProcessC
- WPF实现多级菜单(菜单多按钮)
- c#实现可折叠展开的DataGridView提供dl
- C#利用Zxing.NET生成条形码和二维码并实
- WinForm 实现图片滚动
- c#调用海康sdk实现查看视频回放
- 104规约 C#实现代码
- .net实现微信公众帐号主动发消息给用
- C#实现的基于BP神经网络的数据预测降
- C# 用三层架构实现简单的增删改查
评论
共有 条评论