Source: here
具体代码就不贴了,知道原理就可以写出代码。一些是实践所得,一些是别人的成果,也
都收集在一起了。解密、加密这个攻防战好像和传统作战的攻防战不同,防的一方能用的技术
远远多于攻的一方。
L | Ma | Me | J | V | S | D |
---|---|---|---|---|---|---|
« sept | ||||||
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 |
Source: here
具体代码就不贴了,知道原理就可以写出代码。一些是实践所得,一些是别人的成果,也
都收集在一起了。解密、加密这个攻防战好像和传统作战的攻防战不同,防的一方能用的技术
远远多于攻的一方。
SHELLEXECUTEINFO SHInfo;
SHInfo.cbSize = sizeof(SHELLEXECUTEINFO);
SHInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
SHInfo.lpFile = lpFilePath; // path of PPC explorer
SHInfo.lpParameters = lpURL; // URLShellExecuteEx(&SHInfo);
look here
This is a very good article that gives a way for cool user friendly look GUI. Much imagination with simple implementation.
Egawtry has published an article on CodeGuru to cope with floating point operations for whose processors that needs emulate floating point operation.
very interesting.
On peut obtenir un certain nombre d’information avec l’optioon /dump du linker de la plateforme cible. Par exemple,
« C:\Program Files\Microsoft eMbedded C++ 4.0\EVC\WCE400\BIN\link.exe » /dump -HEADERS -DEPENDENTS toto.exe > dump.txt
il donne la sortie ci-dessous avec le résumé, les dépendances, etc.
Read the rest of this entry »
This is an example of how to create and use masked and semi-transparent bitmap buttons that can be overlaid on any background, including other bitmaps. The buttons are automatically alpha-blended (anti-aliased) with the background to create nice smooth edges, and provide region clipping to create various elliptical and other shapes.
For details click codeproject
fdljmkdfsqlmfdsqqjfl
Win32++ provides a framework for developing applications, using the Win32 API directly. It supports all MS operating systems which run the Win32 API, from Windows 95 through to Windows XP and Vista. This framework is designed to produce programs with a similar look and feel to those created using MFC. It can develop applications based on simple windows, dialogs, frames and MDI frames. The frames produced by Win32++ have the following features:
- Rebar Control (to contain the Menubar and Toolbar)
- Menubar
- Toolbar
- Status bar
- Tool tips
Win32++ also brings an object oriented approach to programming directly with the Win32 API. Each window created is a C++ class object capable of having its own window procedure for routing messages.
Click CodeProject for detail
Plugins are the common way for extending applications. They are usually implemented as DLLs. The host application locates the plugins (either by looking in a predefined folder, or by some sort of registry setting or configuration file) then loads them one by one with LoadLibrary. The plugins are then integrated into the host application and extend it with new functionality.
This article will show how to create a host EXE with multiple plugin DLLs. We’ll see how to seamlessly expose any of the host’s classes, functions and data as an API to the plugins. There will be some technical challenges that we are going to solve along the way.
Click CodeProject for detail.