comparison src/w32.h @ 34697:ba9de1745e36

(w32_strerror): New extern.
author Andrew Innes <andrewi@gnu.org>
date Mon, 18 Dec 2000 23:50:56 +0000
parents 7d541d1ca075
children 2d293a5868cf
comparison
equal deleted inserted replaced
34696:a1785afaedef 34697:ba9de1745e36
18 18
19 You should have received a copy of the GNU General Public License 19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING. If not, write to 20 along with GNU Emacs; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */ 22 Boston, MA 02111-1307, USA. */
23
23 24
24 /* File descriptor set emulation. */ 25 /* File descriptor set emulation. */
25 26
26 /* MSVC runtime library has limit of 64 descriptors by default */ 27 /* MSVC runtime library has limit of 64 descriptors by default */
27 #define FD_SETSIZE 64 28 #define FD_SETSIZE 64
101 extern child_process * new_child (void); 102 extern child_process * new_child (void);
102 extern void delete_child (child_process *cp); 103 extern void delete_child (child_process *cp);
103 104
104 /* ------------------------------------------------------------------------- */ 105 /* ------------------------------------------------------------------------- */
105 106
107 /* Equivalent of strerror for W32 error codes. */
108 extern char * w32_strerror (int error_no);
109
106 /* Get long (aka "true") form of file name, if it exists. */ 110 /* Get long (aka "true") form of file name, if it exists. */
107 extern BOOL w32_get_long_filename (char * name, char * buf, int size); 111 extern BOOL w32_get_long_filename (char * name, char * buf, int size);
108 112
109 /* Prepare our standard handles for proper inheritance by child processes. */ 113 /* Prepare our standard handles for proper inheritance by child processes. */
110 extern void prepare_standard_handles (int in, int out, 114 extern void prepare_standard_handles (int in, int out,