aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes2000-12-18 23:50:56 +0000
committerAndrew Innes2000-12-18 23:50:56 +0000
commit7482f2ecdb91fc951425d8f5c206a9a9e16b2e90 (patch)
treef3990816fa1616722ba74d0adcc0df701c8d9143 /src
parent18e070ac54fd583e435b2200fed805fa94a4268d (diff)
downloademacs-7482f2ecdb91fc951425d8f5c206a9a9e16b2e90.tar.gz
emacs-7482f2ecdb91fc951425d8f5c206a9a9e16b2e90.zip
(w32_strerror): New extern.
Diffstat (limited to 'src')
-rw-r--r--src/w32.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/w32.h b/src/w32.h
index d6c76f04795..33dc9c3f17b 100644
--- a/src/w32.h
+++ b/src/w32.h
@@ -21,6 +21,7 @@ along with GNU Emacs; see the file COPYING. If not, write to
21the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 21the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22Boston, MA 02111-1307, USA. */ 22Boston, 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 */
@@ -103,6 +104,9 @@ extern void delete_child (child_process *cp);
103 104
104/* ------------------------------------------------------------------------- */ 105/* ------------------------------------------------------------------------- */
105 106
107/* Equivalent of strerror for W32 error codes. */
108extern 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. */
107extern BOOL w32_get_long_filename (char * name, char * buf, int size); 111extern BOOL w32_get_long_filename (char * name, char * buf, int size);
108 112