.NET
remote.txt
Associated article: Remotely Controlling Windows Applications
Tags: .NET Mobile Parallel
Published source code accompanying the article by Ruben Patel in which he shows how to remotely control Windows applications--even when the apps are running a mile or so under water.
Remotely Controlling Windows Apps
by Ruben Patel
Listing One
1 // Header
2 #ifndef __GLOBAL_HH__
3 #define __GLOBAL_HH__
4 #include <windows.h>
5
6 typedef struct
7 {
8 HWND hwnd;
9 const char *title;
10 } FindWnd;
11
12 CALLBACK CheckWindowTitle( HWND hwnd, LPARAM lParam );
13 HWND FindWinTitle(const char *title);
14 ...


