Click here to Skip to main content
15,891,993 members
Articles / Mobile Apps / Windows Mobile

Windows Mobile Remote Controller

Rate me:
Please Sign up or sign in to vote.
4.92/5 (24 votes)
28 Mar 2008CPOL4 min read 173.8K   2.8K   104  
Control your Windows Mobile device from your desktop.
#pragma once


#include <rapi.h>
#include <ddraw.h>
#include "dibsection.h"


class CRemoteControl
{
public:
	CRemoteControl(IRAPIStream *pStream);
	~CRemoteControl(void);

	HRESULT		Run	();

private:
	IRAPIStream*	m_pStream;
	BYTE*			m_pScrBuf;
	DWORD			m_cbScrBuf;
	BYTE*			m_pZipBuf;
	DWORD			m_cbZipBuf;
	int				m_xScreenOld,
					m_yScreenOld;
	CDIBSection		m_dib;

	HRESULT	SendScreen	();
	HRESULT	GetInput	();
};

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) Frotcom International
Portugal Portugal
I work on R&D for Frotcom International, a company that develops web-based fleet management solutions.

Comments and Discussions