Click here to Skip to main content
15,886,087 members
Articles / Mobile Apps / Windows Mobile

Inject My DLL Into a Process

Rate me:
Please Sign up or sign in to vote.
5.00/5 (8 votes)
25 Jul 2009CPOL3 min read 39.9K   882   42  
A Windows Mobile Spy.
// mydll.h : main header file for the MYDLL DLL
//

#if !defined(AFX_MYDLL_H__31F668AF_0EA4_4A7A_B95C_4A969394DDD9__INCLUDED_)
#define AFX_MYDLL_H__31F668AF_0EA4_4A7A_B95C_4A969394DDD9__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CMydllApp
// See mydll.cpp for the implementation of this class
//

class CMydllApp : public CWinApp
{
public:
	CMydllApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMydllApp)
	//}}AFX_VIRTUAL

	//{{AFX_MSG(CMydllApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MYDLL_H__31F668AF_0EA4_4A7A_B95C_4A969394DDD9__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Jordan Jordan
Mobile Developer with deep Experience in Handheld Device Pocket Pc, Smart Phone in Win32, MFC With more than 8 years ago."Arabizer, Hook Function, Poom, Wirless Application, and low level Application". By C++ MFC and win32

http://windowsmobiledn.blog.com/

Comments and Discussions