diff options
Diffstat (limited to 'cipher/rand-w32.c')
-rw-r--r-- | cipher/rand-w32.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/cipher/rand-w32.c b/cipher/rand-w32.c new file mode 100644 index 000000000..c96e04eba --- /dev/null +++ b/cipher/rand-w32.c @@ -0,0 +1,54 @@ +/* rand-w32.c - Windoze32 and NT random device + * Copyright (C) 1998 Free Software Foundation, Inc. + * + * This file is part of GNUPG. + * + * GNUPG is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * GNUPG is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + */ + + +#include <config.h> +#include <stdio.h> +#include <stdlib.h> +#include <assert.h> +#include <errno.h> +#include <sys/time.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <string.h> +#include <unistd.h> +#include <fcntl.h> +#include "util.h" +#include "rmd.h" +#include "ttyio.h" +#include "i18n.h" +#include "rand-internal.h" +#ifdef USE_RAND_W32 /* this file is only for Mingw32 */ + + +#error To be written + +void +random_poll() +{ +} + + +void +fast_random_poll() +{ +} + +#endif /* USE_RAND_W32 */ |