Added RTL Stubs, Prototypes and Exports.

svn path=/trunk/; revision=10404
This commit is contained in:
Alex Ionescu 2004-08-05 18:17:37 +00:00
parent 172a11d61b
commit 3c1d312107
25 changed files with 2139 additions and 384 deletions

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: random.c,v 1.1 2004/05/31 19:29:02 gdalsnes Exp $
/* $Id: random.c,v 1.2 2004/08/05 18:17:37 ion Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -26,11 +26,12 @@
/* INCLUDES *****************************************************************/
#define NTOS_MODE_USER
#include <ntos.h>
#include <ddk/ntddk.h>
//#include <ddk/ntddk.h>
#define NDEBUG
#include <debug.h>
#define MAXLONG (0x7fffffff)
static ULONG SavedValue[128] =
{
@ -96,6 +97,19 @@ RtlRandom (IN OUT PULONG Seed)
return Result;
}
/*
* @unimplemented
*/
ULONG
STDCALL
RtlRandomEx(
PULONG Seed
)
{
UNIMPLEMENTED;
return 0;
}
/*************************************************************************