| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
#include <windows.h> |
|---|
| 22 |
#include <ddeml.h> |
|---|
| 23 |
#include <stdlib.h> |
|---|
| 24 |
#include <stdio.h> |
|---|
| 25 |
|
|---|
| 26 |
HDDEDATA CALLBACK |
|---|
| 27 |
DdeCallback (UINT uType, UINT uFmt, HCONV hconv, |
|---|
| 28 |
HSZ hsz1, HSZ hsz2, HDDEDATA hdata, |
|---|
| 29 |
DWORD dwData1, DWORD dwData2) |
|---|
| 30 |
{ |
|---|
| 31 |
return ((HDDEDATA) NULL); |
|---|
| 32 |
} |
|---|
| 33 |
|
|---|
| 34 |
#define DdeCommand(str) \ |
|---|
| 35 |
DdeClientTransaction (str, strlen (str)+1, HConversation, (HSZ)NULL, \ |
|---|
| 36 |
CF_TEXT, XTYP_EXECUTE, 30000, NULL) |
|---|
| 37 |
|
|---|
| 38 |
int |
|---|
| 39 |
main (argc, argv) |
|---|
| 40 |
int argc; |
|---|
| 41 |
char *argv[]; |
|---|
| 42 |
{ |
|---|
| 43 |
DWORD idDde = 0; |
|---|
| 44 |
HCONV HConversation; |
|---|
| 45 |
HSZ Server; |
|---|
| 46 |
HSZ Topic = 0; |
|---|
| 47 |
char command[1024]; |
|---|
| 48 |
|
|---|
| 49 |
if (argc < 2) |
|---|
| 50 |
{ |
|---|
| 51 |
fprintf (stderr, "usage: ddeclient server [topic]\n"); |
|---|
| 52 |
exit (1); |
|---|
| 53 |
} |
|---|
| 54 |
|
|---|
| 55 |
DdeInitialize (&idDde, (PFNCALLBACK)DdeCallback, APPCMD_CLIENTONLY, 0); |
|---|
| 56 |
|
|---|
| 57 |
Server = DdeCreateStringHandle (idDde, argv[1], CP_WINANSI); |
|---|
| 58 |
if (argc > 2) |
|---|
| 59 |
Topic = DdeCreateStringHandle (idDde, argv[2], CP_WINANSI); |
|---|
| 60 |
|
|---|
| 61 |
HConversation = DdeConnect (idDde, Server, Topic, NULL); |
|---|
| 62 |
if (HConversation != 0) |
|---|
| 63 |
{ |
|---|
| 64 |
while (fgets (command, sizeof(command), stdin) != NULL) |
|---|
| 65 |
DdeCommand (command); |
|---|
| 66 |
|
|---|
| 67 |
DdeDisconnect (HConversation); |
|---|
| 68 |
} |
|---|
| 69 |
|
|---|
| 70 |
DdeFreeStringHandle (idDde, Server); |
|---|
| 71 |
if (Topic) |
|---|
| 72 |
DdeFreeStringHandle (idDde, Topic); |
|---|
| 73 |
DdeUninitialize (idDde); |
|---|
| 74 |
|
|---|
| 75 |
return (0); |
|---|
| 76 |
} |
|---|