[amd64] Remove the callee saved registers from MonoLMF, save/restore them normally...
[mono-project.git] / mono / metadata / rand.h
blob76864ca31cb05a7d0a9797b55aa35794179c6a89
1 /*
2 * rand.h: System.Security.Cryptography.RNGCryptoServiceProvider support
4 * Author:
5 * Mark Crichton (crichton@gimp.org)
6 * Sebastien Pouliot (sebastien@ximian.com)
8 * (C) 2001 Ximian, Inc.
9 * Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
12 #ifndef _MONO_METADATA_RAND_H_
13 #define _MONO_METADATA_RAND_H_
15 #include <glib.h>
16 #include <mono/metadata/object.h>
17 #include "mono/utils/mono-compiler.h"
19 MonoBoolean ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngOpen (void) MONO_INTERNAL;
20 gpointer ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize (MonoArray *seed) MONO_INTERNAL;
21 gpointer ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes (gpointer handle, MonoArray *arry) MONO_INTERNAL;
22 void ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngClose (gpointer handle) MONO_INTERNAL;
24 #endif