Mercurial > emacs
annotate nt/ddeclient.c @ 90195:a1b34dec1104
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-63
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 358-423)
- Update from CVS
- Remove "-face" suffix from widget faces
- Remove "-face" suffix from custom faces
- Remove "-face" suffix from change-log faces
- Remove "-face" suffix from compilation faces
- Remove "-face" suffix from diff-mode faces
- lisp/longlines.el (longlines-visible-face): Face removed
- Remove "-face" suffix from woman faces
- Remove "-face" suffix from whitespace-highlight face
- Remove "-face" suffix from ruler-mode faces
- Remove "-face" suffix from show-paren faces
- Remove "-face" suffix from log-view faces
- Remove "-face" suffix from smerge faces
- Remove "-face" suffix from show-tabs faces
- Remove "-face" suffix from highlight-changes faces
- Remove "-face" suffix from and downcase info faces
- Remove "-face" suffix from pcvs faces
- Update uses of renamed pcvs faces
- Tweak ChangeLog
- Remove "-face" suffix from strokes-char face
- Remove "-face" suffix from compare-windows face
- Remove "-face" suffix from calendar faces
- Remove "-face" suffix from diary-button face
- Remove "-face" suffix from testcover faces
- Remove "-face" suffix from viper faces
- Remove "-face" suffix from org faces
- Remove "-face" suffix from sgml-namespace face
- Remove "-face" suffix from table-cell face
- Remove "-face" suffix from tex-mode faces
- Remove "-face" suffix from texinfo-heading face
- Remove "-face" suffix from flyspell faces
- Remove "-face" suffix from gomoku faces
- Remove "-face" suffix from mpuz faces
- Merge from gnus--rel--5.10
- Remove "-face" suffix from Buffer-menu-buffer face
- Remove "-face" suffix from antlr-mode faces
- Remove "-face" suffix from ebrowse faces
- Remove "-face" suffix from flymake faces
- Remove "-face" suffix from idlwave faces
- Remove "-face" suffix from sh-script faces
- Remove "-face" suffix from vhdl-mode faces
- Remove "-face" suffix from which-func face
- Remove "-face" suffix from cperl-mode faces
- Remove "-face" suffix from ld-script faces
- Fix cperl-mode font-lock problem
- Tweak which-func face
* gnus--rel--5.10 (patch 80-82)
- Merge from emacs--cvs-trunk--0
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Wed, 15 Jun 2005 23:32:15 +0000 |
parents | 68c22ea6027c |
children | f9a65d7ebd29 |
rev | line source |
---|---|
21731 | 1 /* Simple client interface to DDE servers. |
2 Copyright (C) 1998 Free Software Foundation, Inc. | |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 #include <windows.h> | |
22 #include <ddeml.h> | |
23 #include <stdlib.h> | |
24 #include <stdio.h> | |
25 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
21731
diff
changeset
|
26 HDDEDATA CALLBACK |
21731 | 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 } | |
89909 | 77 |
78 /* arch-tag: 360d7a99-2cae-447e-8d06-41ca41987e30 | |
79 (do not change this comment) */ |