www.pudn.com > PEInject.rar > ChildView.h
// ChildView.h : CChildView 类的接口 // #pragma once #include#include "InputPassWord.h" // CChildView 窗口 class CChildView : public CWnd { // 构造 public: CChildView(); // 属性 public: char m_PassWord[12]; // 操作 public: // 重写 protected: virtual BOOL PreCreateWindow(CREATESTRUCT& cs); // 实现 public: virtual ~CChildView(); // 生成的消息映射函数 protected: afx_msg void OnPaint(); DECLARE_MESSAGE_MAP() public: afx_msg void OnFileopen(); void ListPEFile(CString FileName); void ProduceSWFPlayer(CString SWFName); afx_msg void OnMyplayer(); afx_msg void OnSwfplayer(); void XORBuff(unsigned char *buff, DWORD n); };