[1]cs辅助项目分解

一,什么是进程PROCESS.EXE

  CreateProcess

  shellexecute  打开外部程序或文件

1.如何遍历进程

CreateToolhelp32Snapshot    查找一个进程

EnumProcesses()         枚举进程

 

2.内存管理

物理内存、虚拟内存;

VirtualAlloc

CreateFileMapping

MapViewOfFile

ReadProcessMemory

WirteProcessMemory

3.多线程、线程管理

  CreateThread()

  线程同步

      •  线程锁
      •  互斥体
      •     事件

       4.窗口的创建 

    CreateWindow

    DialogBox

    CreateDialog

    CAllBACK      回调函数

  5.消息机制   (重点了解)

  WM_        开头的标准消息

  SendMessage

  PostMessage       发送消息

  mouse_event   模拟鼠标事件  

  keybd_event  模拟键盘事件

  ListView  做出窗口列表

  6.基础GDI的操作  DC图形设备对象

    GetDC

    RelaseDC

    Beginpaint

    Endpaint

  7.坐标转换

    三角函数

  8.透明窗口

  

原创学习随笔心得,请勿转载!
原文地址:https://www.cnblogs.com/hanhandaren/p/10956356.html