root/projects/WinDictator/trunk/wdwin.pyw

Revision 19, 1.0 kB (checked in by edsuom, 1 year ago)

Importing windictator into the global FOSS repo

Line 
1 # -*- mode:python; -*-
2 # WinDictator:
3 # Dictate in Windows, have the text typed in Linux via X faked keystroke events
4 #
5 # Copyright (C) 2005-2006 by Edwin A. Suominen, http://www.eepatents.com
6 #
7 # This program is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # This program is distributed in the hope that it will be useful, but WITHOUT
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE.  See the file COPYING for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # this program; if not, write to the Free Software Foundation, Inc., 51
18 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19
20 PORT = 8789
21
22 from windictator.windows import pb
23
24 pb.startServer(PORT)
25
26 # Yes, that's it. See modules for details.
Note: See TracBrowser for help on using the browser.