2001-01-11 00:59:25 +01:00
|
|
|
/*
|
|
|
|
* msvcrt.dll misc functions
|
|
|
|
*
|
|
|
|
* Copyright 2000 Jon Griffiths
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "msvcrt.h"
|
|
|
|
|
2001-04-11 01:25:25 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include "msvcrt/stdlib.h"
|
|
|
|
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
DEFAULT_DEBUG_CHANNEL(msvcrt);
|
|
|
|
|
2001-04-10 23:16:07 +02:00
|
|
|
typedef int (*MSVCRT_comp_func)(const void*, const void*);
|
2001-01-11 00:59:25 +01:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _beep (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
void _beep( unsigned int freq, unsigned int duration)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
|
|
|
TRACE(":Freq %d, Duration %d\n",freq,duration);
|
|
|
|
Beep(freq, duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* rand (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
int MSVCRT_rand()
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
|
|
|
return (rand() & 0x7fff);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _sleep (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
void _sleep(unsigned long timeout)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2001-04-10 23:16:07 +02:00
|
|
|
TRACE("_sleep for %ld milliseconds\n",timeout);
|
2001-01-11 00:59:25 +01:00
|
|
|
Sleep((timeout)?timeout:1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _lfind (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
void* _lfind(const void* match, const void* start,
|
|
|
|
unsigned int* array_size, unsigned int elem_size,
|
|
|
|
MSVCRT_comp_func cf)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
|
|
|
unsigned int size = *array_size;
|
|
|
|
if (size)
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (cf(match, start) == 0)
|
|
|
|
return (void *)start; /* found */
|
|
|
|
start += elem_size;
|
|
|
|
} while (--size);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _lsearch (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
void* _lsearch(const void* match, void* start,
|
|
|
|
unsigned int* array_size, unsigned int elem_size,
|
|
|
|
MSVCRT_comp_func cf)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
|
|
|
unsigned int size = *array_size;
|
|
|
|
if (size)
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (cf(match, start) == 0)
|
|
|
|
return start; /* found */
|
|
|
|
start += elem_size;
|
|
|
|
} while (--size);
|
|
|
|
|
|
|
|
/* not found, add to end */
|
|
|
|
memcpy(start, match, elem_size);
|
|
|
|
array_size[0]++;
|
|
|
|
return start;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _chkesp (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
void _chkesp(void)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|