mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-09 21:28:51 +01:00
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
/* 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 */
|