Changeset 1862 for trunk/src/msvcrt/msvcrt.cpp
- Timestamp:
- Nov 27, 1999, 8:52:21 PM (26 years ago)
- 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 $ */ 2 2 3 3 /* … … 32 32 extern USHORT _pctype_dll; 33 33 extern CRTDLL_FILE _iob; 34 wchar_t ** __wargv; 35 wchar_t * _wpgmptr; 36 wchar_t ** _wenviron; 34 37 35 38 … … 760 763 761 764 /********************************************************************* 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 /********************************************************************* 762 776 * _except_handler3 (MSVCRT.203) 763 777 */ … … 783 797 784 798 /********************************************************************* 799 * _getmaxstdio (MSVCRT.256) 800 */ 801 int 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 /********************************************************************* 785 810 * _getmbcp (MSVCRT.257) 786 811 */ … … 805 830 806 831 /********************************************************************* 832 * _heapadd (MSVCRT.263) 833 */ 834 int 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 */ 845 char * 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 */ 856 wchar_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 /********************************************************************* 807 865 * _inp (MSVCRT.273) 808 866 */ … … 970 1028 971 1029 /********************************************************************* 1030 * _setmaxstdio (MSVCRT.426) 1031 */ 1032 int 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 /********************************************************************* 972 1041 * _strncoll (MSVCRT.453) 973 1042 */ … … 990 1059 } 991 1060 1061 1062 /********************************************************************* 1063 * _ui64toa (MSVCRT.472) 1064 */ 1065 /* 1066 char * 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 /* 1078 wchar_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 */ 992 1085 993 1086 /********************************************************************* … … 1225 1318 1226 1319 /********************************************************************* 1320 * _wfindnexti64 (MSVCRT.515) 1321 */ 1322 /* 1323 int 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 /********************************************************************* 1227 1333 * _wfopen (MSVCRT.516) 1228 1334 */ … … 1555 1661 1556 1662 /********************************************************************* 1663 * _wstati64 (MSVCRT.551) 1664 */ 1665 int 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 /********************************************************************* 1557 1674 * _wstrdate (MSVCRT.552) 1558 1675 */ … … 1599 1716 1600 1717 /********************************************************************* 1601 * _wtmpnam (MSVCRT.55 5)1718 * _wtmpnam (MSVCRT.558) 1602 1719 */ 1603 1720 wchar_t * CDECL MSVCRT__wtmpnam( wchar_t *tn ) 1604 1721 { 1605 1722 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")); 1606 1734 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1607 1735 return FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.