diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-08-06 12:52:47 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-08-06 12:52:47 -0700 |
commit | 3ef1d1082bc24df1ffcb237f6bb09cbc0395d1c8 (patch) | |
tree | 693b1677aeba4791806f24e93d63c39a319f7695 /src/w32.c | |
parent | bd4c5e3e069015b7ed7438155b6541cf26c44542 (diff) | |
download | emacs-3ef1d1082bc24df1ffcb237f6bb09cbc0395d1c8.tar.gz |
Move declarations to header files.
* src/keyboard.h (quit_char): Add declaration.
* src/process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
(QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary): Add
declarations.
* sysdep.c:
* src/w32.c: Remove the above declarations.
Diffstat (limited to 'src/w32.c')
-rw-r--r-- | src/w32.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/w32.c b/src/w32.c index 19335742347..f1ed6ae0be9 100644 --- a/src/w32.c +++ b/src/w32.c @@ -140,10 +140,6 @@ typedef struct _PROCESS_MEMORY_COUNTERS_EX { /* For serial_configure and serial_open. */ #include "process.h" -/* From process.c */ -extern Lisp_Object QCport, QCspeed, QCprocess; -extern Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven; -extern Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary; typedef HRESULT (WINAPI * ShGetFolderPath_fn) (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *); |