]> code.delx.au - gnu-emacs/blobdiff - src/process.h
Fix bug #15148 with garbled display in Dired when cache-long-scans is ON.
[gnu-emacs] / src / process.h
index 6aff95686a24c7b4ce42dad010f85e1825320a1b..37d220e987c549268d8312ac55d8874a02de07f4 100644 (file)
@@ -27,9 +27,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #endif
 
 INLINE_HEADER_BEGIN
-#ifndef PROCESS_INLINE
-# define PROCESS_INLINE INLINE
-#endif
 
 /* Bound on number of file descriptors opened on behalf of a process,
    that need to be closed.  */
@@ -179,14 +176,14 @@ struct Lisp_Process
 /* Most code should use these functions to set Lisp fields in struct
    process.  */
 
-PROCESS_INLINE void
+INLINE void
 pset_childp (struct Lisp_Process *p, Lisp_Object val)
 {
   p->childp = val;
 }
 
 #ifdef HAVE_GNUTLS
-PROCESS_INLINE void
+INLINE void
 pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val)
 {
   p->gnutls_cred_type = val;
@@ -229,6 +226,10 @@ extern Lisp_Object system_process_attributes (Lisp_Object);
 /* Defined in process.c.  */
 
 extern void record_deleted_pid (pid_t, Lisp_Object);
+struct sockaddr;
+#ifdef WINDOWSNT
+extern Lisp_Object conv_sockaddr_to_lisp (struct sockaddr *, int);
+#endif
 extern void hold_keyboard_input (void);
 extern void unhold_keyboard_input (void);
 extern bool kbd_on_hold_p (void);
@@ -243,4 +244,9 @@ extern void delete_write_fd (int fd);
 extern void catch_child_signal (void);
 #endif
 
+#ifdef WINDOWSNT
+extern Lisp_Object network_interface_list (void);
+extern Lisp_Object network_interface_info (Lisp_Object);
+#endif
+
 INLINE_HEADER_END