Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * cygwin_util.c |
| 4 | * |
| 5 | * Author: Corinna Vinschen <vinschen@cygnus.com> |
| 6 | * |
| 7 | * Copyright (c) 2000 Corinna Vinschen <vinschen@cygnus.com>, Duisburg, Germany |
| 8 | * All rights reserved |
| 9 | * |
| 10 | * Created: Sat Sep 02 12:17:00 2000 cv |
| 11 | * |
| 12 | * This file contains functions for forcing opened file descriptors to |
| 13 | * binary mode on Windows systems. |
| 14 | */ |
| 15 | |
| 16 | #include "config.h" |
| 17 | |
| 18 | #ifdef HAVE_CYGWIN |
| 19 | |
Damien Miller | 05dd795 | 2000-10-01 00:42:48 +1100 | [diff] [blame] | 20 | int binary_open(const char *filename, int flags, ...); |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 21 | int binary_pipe(int fd[2]); |
| 22 | int check_nt_auth(int pwd_authenticated, uid_t uid); |
| 23 | int check_ntsec(const char *filename); |
| 24 | |
| 25 | #define open binary_open |
| 26 | #define pipe binary_pipe |
| 27 | |
| 28 | #endif /* HAVE_CYGWIN */ |