CreateRemoteThread简单应用
#pragma once#include #include #include "stdio.h"//线程参数结构体定义typedef struct _RemoteParam {char szMsg[12]; //MessageBox函数中显示的字符提示DWORD dwMessageBox;//MessageBox函数的入口地址} RemoteParam, * PRemoteParam;//定义Me