* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
[emacs.git] / lib-src / ntlib.h
blobaee4033ec296e3d9a62061f10aae68ea869c6502
1 /* Utility and Unix shadow routines for GNU Emacs support programs on NT.
2 Copyright (C) 1994, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <pwd.h>
22 #include <malloc.h>
24 /* Include these headers now so we don't have to worry about include
25 order dependencies in common source files. */
26 #include <direct.h>
27 #include <io.h>
28 #include <stdio.h>
30 #ifdef sleep
31 #undef sleep
32 #endif
33 void sleep(unsigned long seconds);
34 char *getwd (char *dir);
35 int getppid(void);
36 char * getlogin ();
37 char * cuserid (char * s);
38 unsigned getuid ();
39 unsigned getegid ();
40 unsigned getgid ();
41 int setuid (unsigned uid);
42 int setregid (unsigned rgid, unsigned gid);
43 char * getpass (const char * prompt);
44 int fchown (int fd, unsigned uid, unsigned gid);
46 #ifndef BSTRING
47 #define bzero(b, l) memset(b, 0, l)
48 #define bcopy(s, d, l) memcpy(d, s, l)
49 #define bcmp(a, b, l) memcmp(a, b, l)
50 #endif
52 /* redirect or undo interceptions created by config.h */
53 #undef access
54 #define access _access
55 #undef chdir
56 #define chdir _chdir
57 #undef chmod
58 #define chmod _chmod
59 #undef close
60 #define close _close
61 #undef creat
62 #define creat _creat
63 #undef ctime
64 #undef dup
65 #define dup _dup
66 #undef dup2
67 #define dup2 _dup2
68 #undef fopen
69 #undef mkdir
70 #define mkdir _mkdir
71 #undef mktemp
72 #define mktemp _mktemp
73 #undef open
74 #define open _open
75 #undef pipe
76 #define pipe _pipe
77 #undef read
78 #define read _read
79 #undef rename
80 #undef rmdir
81 #define rmdir _rmdir
82 #undef unlink
83 #define unlink _unlink
84 #undef write
85 #define write _write
87 /* map to MSVC names */
88 #define execlp _execlp
89 #define execvp _execvp
90 #define fdopen _fdopen
91 #ifndef fileno
92 #define fileno _fileno
93 #endif
94 #define getcwd _getcwd
95 #define getw _getw
96 #define getpid _getpid
97 #define isatty _isatty
98 #define locking _locking
99 #define logb _logb
100 #define _longjmp longjmp
101 #define lseek _lseek
102 #define popen _popen
103 #define pclose _pclose
104 #define umask _umask
105 #define utime _utime
106 #define index strchr
107 #define rindex strrchr
109 /* Make standard winsock definitions available if needed. */
110 #undef _WINSOCKAPI_
111 #undef _WINSOCK_H
113 /* end of ntlib.h */
115 /* arch-tag: 93444f66-7b98-4aa5-a5cd-01444094af28
116 (do not change this comment) */