Ignore:
Timestamp:
Nov 27, 1999, 8:52:21 PM (26 years ago)
Author:
sandervl
Message:

Jens Weissner added stubs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/msvcrt/msvcrt.cpp

    r1710 r1862  
    1 /* $Id: msvcrt.cpp,v 1.5 1999-11-12 11:38:40 sandervl Exp $ */
     1/* $Id: msvcrt.cpp,v 1.6 1999-11-27 19:52:20 sandervl Exp $ */
    22
    33/*
     
    3232extern USHORT   _pctype_dll;
    3333extern CRTDLL_FILE _iob;
     34wchar_t ** __wargv;
     35wchar_t * _wpgmptr;
     36wchar_t ** _wenviron;
    3437
    3538
     
    760763
    761764/*********************************************************************
     765 *                  _atoi64    (MSVCRT.163)
     766 */
     767__int64 CDECL MSVCRT__atoi64(const char *s)
     768{
     769  dprintf(("MSVCRT: _atoi64 not implemented.\n"));
     770  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     771  return FALSE;
     772}
     773
     774
     775/*********************************************************************
    762776 *                  _except_handler3  (MSVCRT.203)
    763777 */
     
    783797
    784798/*********************************************************************
     799 *                  _getmaxstdio    (MSVCRT.256)
     800 */
     801int CDECL MSVCRT__getmaxstdio( void )
     802{
     803  dprintf(("MSVCRT: _getmaxstdio not implemented.\n"));
     804  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     805  return FALSE;
     806}
     807
     808
     809/*********************************************************************
    785810 *                  _getmbcp    (MSVCRT.257)
    786811 */
     
    805830
    806831/*********************************************************************
     832 *                  _heapadd    (MSVCRT.263)
     833 */
     834int CDECL MSVCRT__heapadd(void *v, size_t s)
     835{
     836  dprintf(("MSVCRT: _heapadd not implemented.\n"));
     837  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     838  return FALSE;
     839}
     840
     841
     842/*********************************************************************
     843 *                  _i64toa    (MSVCRT.270)
     844 */
     845char * CDECL MSVCRT__i64toa(__int64 i1, char *s, int i2)
     846{
     847  dprintf(("MSVCRT: _i64toa not implemented.\n"));
     848  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     849  return FALSE;
     850}
     851
     852
     853/*********************************************************************
     854 *                  _i64tow    (MSVCRT.271)
     855 */
     856wchar_t * CDECL MSVCRT__i64tow(__int64 i1, wchar_t *s, int i2)
     857{
     858  dprintf(("MSVCRT: _i64tow not implemented.\n"));
     859  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     860  return FALSE;
     861}
     862
     863
     864/*********************************************************************
    807865 *                  _inp    (MSVCRT.273)
    808866 */
     
    9701028
    9711029/*********************************************************************
     1030 *                  _setmaxstdio    (MSVCRT.426)
     1031 */
     1032int CDECL MSVCRT__setmaxstdio(int i)
     1033{
     1034  dprintf(("MSVCRT: _setmaxstdio not implemented.\n"));
     1035  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     1036  return FALSE;
     1037}
     1038
     1039
     1040/*********************************************************************
    9721041 *                  _strncoll    (MSVCRT.453)
    9731042 */
     
    9901059}
    9911060
     1061
     1062/*********************************************************************
     1063 *                  _ui64toa    (MSVCRT.472)
     1064 */
     1065/*
     1066char * CDECL MSVCRT__ui64toa(unsigned __int64 value, char *s, int i)
     1067{
     1068  dprintf(("MSVCRT: _ui64toa not implemented.\n"));
     1069  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     1070  return FALSE;
     1071}
     1072*/
     1073
     1074/*********************************************************************
     1075 *                  _ui64tow    (MSVCRT.473)
     1076 */
     1077/*
     1078wchar_t * CDECL MSVCRT__ui64tow(unsigned __int64 value, wchar_t *s, int i)
     1079{
     1080  dprintf(("MSVCRT: _ui64tow not implemented.\n"));
     1081  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     1082  return FALSE;
     1083}
     1084*/
    9921085
    9931086/*********************************************************************
     
    12251318
    12261319/*********************************************************************
     1320 *                  _wfindnexti64     (MSVCRT.515)
     1321 */
     1322/*
     1323int CDECL MSVCRT__wfindnexti64(intptr_t x, struct _wfinddatai64_t *s)
     1324{
     1325  dprintf(("MSVCRT: _wfindnexti64 not implemented.\n"));
     1326  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     1327  return FALSE;
     1328}
     1329*/
     1330
     1331
     1332/*********************************************************************
    12271333 *                  _wfopen        (MSVCRT.516)
    12281334 */
     
    15551661
    15561662/*********************************************************************
     1663 *                  _wstati64          (MSVCRT.551)
     1664 */
     1665int CDECL MSVCRT__wstati64(const wchar_t *s, struct _stati64 *w)
     1666{
     1667  dprintf(("MSVCRT: _wstati64 not implemented.\n"));
     1668  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     1669  return FALSE;
     1670}
     1671
     1672
     1673/*********************************************************************
    15571674 *                  _wstrdate          (MSVCRT.552)
    15581675 */
     
    15991716
    16001717/*********************************************************************
    1601  *                  _wtmpnam          (MSVCRT.555)
     1718 *                  _wtmpnam          (MSVCRT.558)
    16021719 */
    16031720wchar_t * CDECL MSVCRT__wtmpnam( wchar_t *tn )
    16041721{
    16051722  dprintf(("MSVCRT: _wtmpnam not implemented.\n"));
     1723  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     1724  return FALSE;
     1725}
     1726
     1727
     1728/*********************************************************************
     1729 *                  _wtoi64          (MSVCRT.556)
     1730 */
     1731__int64 CDECL MSVCRT__wtoi64(const wchar_t *wt)
     1732{
     1733  dprintf(("MSVCRT: _wtoi64 not implemented.\n"));
    16061734  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    16071735  return FALSE;
Note: See TracChangeset for help on using the changeset viewer.