NtReadVirtualMemory函数位于ntdll中,作用就是把用户态的函数调用翻译成相应的系统调用,进入内核态。内核中一般有一个相同名字的处理函数,接收到该类型的系统调用后做实际的工作。NTSTATUS
STDCALLNtReadVirtualMemory(IN HANDLE Process...
分类:
其他好文 时间:
2014-05-19 18:08:54
阅读次数:
337
这是效果图:activity_main.xml0106071213listview_item.xml
listview每一条0109101415footer.xml作为每一页翻到最后时显示:正在加载中.....01101115162122下面是主界面:01public
class MainActiv...
分类:
移动开发 时间:
2014-05-19 09:10:21
阅读次数:
368
TopicsIntroduction (starting with old
devices)How to handle a new FirmwareHow to set up your Mac and Device for Vuln
Research/Exploit DevelopmentHow t...
分类:
其他好文 时间:
2014-05-16 00:20:17
阅读次数:
410
1、解决PNG图片在IE6中背景不透明的CSS与JS代码 - TOPJS代码function
correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6. { var
arVe...
分类:
其他好文 时间:
2014-05-15 21:14:20
阅读次数:
259
// 创建保存照片文件夹
private void CreateFileJPG() {
File file = new File("/sdcard/image");
if (!file.exists()) {
try {
file.mkdirs();
} catch (Exception e) {
// TODO: handle exceptio...
分类:
移动开发 时间:
2014-05-15 06:39:58
阅读次数:
434
传递消息的集中方式:一:Messagemessage=Message.obtain();
message.obj=data;
message.what=IS_FINISHED;
handle.sendMessage(message);二:Messagemessage=Message.obtain(handle);
message.obj=data;
message.sendToTarget();三:可以在message中传递复杂数据Messag..
分类:
移动开发 时间:
2014-05-14 18:59:52
阅读次数:
331
1. java层面的Surface
对于Surface我们的认识主要是android的类Surface, android的文档描述Surface是“Handle onto a raw buffer
that is being managed by the screen compositor”,这个描...
分类:
移动开发 时间:
2014-05-14 01:43:20
阅读次数:
9126
#ifndef _LOGFILE_H#define _LOGFILE_H#include
#include #include #include class LogFile{protected: CRITICAL_SECTION
_csLock; char * _szFileName; HANDLE....
分类:
编程语言 时间:
2014-05-13 19:15:17
阅读次数:
348
分享两个使用函数:php循环删除目录及目录下的文件和仅删除指定目录下的文件,不删除目录文件夹!代码一:php循环删除目录及目录下的文件<?php//循环删除目录和文件函数functiondelDirAndFile($dirName){if($handle=opendir("$dirName")){while(false!==($item=readdir($han..
分类:
Web程序 时间:
2014-05-13 01:47:25
阅读次数:
410
RT,使用eclipse导入项目时 报
No marketplace entries found to handle yuicompressor maven plugin:1.3.0:compile in Eclipse. Please see Help for more information
我认为同事说的很对,
eclipse是面向插件的,maven插件m2ecli...
分类:
其他好文 时间:
2014-05-12 15:23:26
阅读次数:
333