10 2014 档案

C++ win32 dll 引用外部CLR,加载托管程序集异常-Error 10 error LNK2019: unresolved external symbol _CLRCreateInstancet
摘要:异常:Error 10 error LNK2019: unresolved external symbol _CLRCreateInstance@12 referenced in function "unsigned long __stdcall StartTheDotNetRuntime(void... 阅读全文

posted @ 2014-10-18 13:09 royalwong_real 阅读(244) 评论(0) 推荐(1)

C++的指针偏移
摘要:假设一个类的定义如下:class Ob{public:Ob() : a(1), b(10) {}int a;private:int b; };􀂋 试编一段程序,用指针偏移的方法通过访问a去获取b的值。这个题目不太明白?是要编一个b[10]数组的类么?还是什么意思呢?答:类ob的a成员和b成员,紧挨... 阅读全文

posted @ 2014-10-13 18:59 royalwong_real 阅读(2407) 评论(0) 推荐(0)

C++ 指针基址1
摘要:char *p=(char *)&n;中括号中为什幺要加个*号答:&n是一个整型数值,代表变量n的地址,不包含其所保存的数据的类型信息(也就是说只凭借一个地址是不能推测出,该地址所存储数据的类型)。而编译器为了保证程序的准确性,要对程序中操作的数据进行类型检查(例如赋值操作中,检查两个操作数类型是否... 阅读全文

posted @ 2014-10-13 18:49 royalwong_real 阅读(648) 评论(0) 推荐(0)

像这样玩C#【转】,觉得文章写的不错就转来啦!版权不在我
摘要:我们玩技术,不是被技术玩。Coding是快乐的,而非苦逼的。.Net/C#这个神器竟然天天有人吐槽。看不下去鸟。在top10语言中,C#是最优美的语言,没有之一。在top10语言中,C#所可用的标准库及可获得其它库是最强大的之一,这个必须带之一,因为有java在。在top10语言中,C#语言是性能最... 阅读全文

posted @ 2014-10-07 16:24 royalwong_real 阅读(427) 评论(0) 推荐(0)

Hooking EndScene
摘要:Hey guys, umm i was trying to hook endscene using detours and i used a method that i hooked many other functions with before but it just doesnt seem t... 阅读全文

posted @ 2014-10-07 15:03 royalwong_real 阅读(693) 评论(0) 推荐(0)

C# Self Injector into non managed process
摘要:Hey all,I'm gonna explain you how make a self injecting program in C#.I hope you guys thinks its usefull and have a nice readingRequirements:Visual St... 阅读全文

posted @ 2014-10-07 14:32 royalwong_real 阅读(341) 评论(0) 推荐(0)

Menu [D3D9 Source]
摘要:源代码下载地址:http://download.csdn.net/detail/wd844125365_/8008779 阅读全文

posted @ 2014-10-07 14:03 royalwong_real 阅读(688) 评论(0) 推荐(0)

DirectX - External Overlay - 源代码
摘要:Today i'm going to release a new version of my overlay.It's coded for beginners & users who want to create external hacks.With the drawing functions i... 阅读全文

posted @ 2014-10-07 13:59 royalwong_real 阅读(463) 评论(0) 推荐(0)

Asynchronous C# server[转]
摘要:It hasn't been thoroughly tested, but seems to work OK.This should scale pretty nicely as well. Originally I was going to code it in C++, but after do... 阅读全文

posted @ 2014-10-07 13:37 royalwong_real 阅读(209) 评论(0) 推荐(0)

通用 C# DLL 注入器injector(注入dll不限)
摘要:为了方便那些不懂或者不想用C++的同志,我把C++的dll注入器源码转换成了C#的,这是一个很简单实用的注入器,用到了CreateRemoteThread,WriteProcessMemory ,VirtualAllocEx这几个Api 1 using System; 2 using Syste... 阅读全文

posted @ 2014-10-07 13:32 royalwong_real 阅读(7480) 评论(2) 推荐(0)