Changeset 2341 for trunk/include/win
- Timestamp:
- Jan 6, 2000, 9:03:04 PM (26 years ago)
- Location:
- trunk/include/win
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/crtdll.h
r1885 r2341 1 /* $Id: crtdll.h,v 1. 2 1999-11-30 14:19:02sandervl Exp $ */1 /* $Id: crtdll.h,v 1.3 2000-01-06 20:03:04 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_CRTDLL_H … … 69 69 extern int LastErrorToErrno(DWORD); 70 70 71 void * __cdecl CRTDLL_malloc( DWORD size ); 72 void __cdecl CRTDLL_free( void *ptr ); 73 74 LPSTR __cdecl CRTDLL__mbsinc( LPCSTR str ); 75 INT __cdecl CRTDLL__mbslen( LPCSTR str ); 76 LPWSTR __cdecl CRTDLL__wcsdup( LPCWSTR str ); 77 INT __cdecl CRTDLL__wcsicmp( LPCWSTR str1, LPCWSTR str2 ); 78 INT __cdecl CRTDLL__wcsicoll( LPCWSTR str1, LPCWSTR str2 ); 79 LPWSTR __cdecl CRTDLL__wcslwr( LPWSTR str ); 80 INT __cdecl CRTDLL__wcsnicmp( LPCWSTR str1, LPCWSTR str2, INT n ); 81 LPWSTR __cdecl CRTDLL__wcsnset( LPWSTR str, WCHAR c, INT n ); 82 LPWSTR __cdecl CRTDLL__wcsrev( LPWSTR str ); 83 LPWSTR __cdecl CRTDLL__wcsset( LPWSTR str, WCHAR c ); 84 LPWSTR __cdecl CRTDLL__wcsupr( LPWSTR str ); 85 INT __cdecl CRTDLL_mbstowcs( LPWSTR dst, LPCSTR src, INT n ); 86 INT __cdecl CRTDLL_mbtowc( WCHAR *dst, LPCSTR str, INT n ); 87 WCHAR __cdecl CRTDLL_towlower( WCHAR ch ); 88 WCHAR __cdecl CRTDLL_towupper( WCHAR ch ); 89 LPWSTR __cdecl CRTDLL_wcscat( LPWSTR dst, LPCWSTR src ); 90 LPWSTR __cdecl CRTDLL_wcschr( LPCWSTR str, WCHAR ch ); 91 INT __cdecl CRTDLL_wcscmp( LPCWSTR str1, LPCWSTR str2 ); 92 DWORD __cdecl CRTDLL_wcscoll( LPCWSTR str1, LPCWSTR str2 ); 93 LPWSTR __cdecl CRTDLL_wcscpy( LPWSTR dst, LPCWSTR src ); 94 INT __cdecl CRTDLL_wcscspn( LPCWSTR str, LPCWSTR reject ); 95 INT __cdecl CRTDLL_wcslen( LPCWSTR str ); 96 LPWSTR __cdecl CRTDLL_wcsncat( LPWSTR s1, LPCWSTR s2, INT n ); 97 INT __cdecl CRTDLL_wcsncmp( LPCWSTR str1, LPCWSTR str2, INT n ); 98 LPWSTR __cdecl CRTDLL_wcsncpy( LPWSTR s1, LPCWSTR s2, INT n ); 99 LPWSTR __cdecl CRTDLL_wcspbrk( LPCWSTR str, LPCWSTR accept ); 100 LPWSTR __cdecl CRTDLL_wcsrchr( LPWSTR str, WCHAR ch ); 101 INT __cdecl CRTDLL_wcsspn( LPCWSTR str, LPCWSTR accept ); 102 LPWSTR __cdecl CRTDLL_wcsstr( LPCWSTR str, LPCWSTR sub ); 103 LPWSTR __cdecl CRTDLL_wcstok( LPWSTR str, LPCWSTR delim ); 104 INT __cdecl CRTDLL_wcstombs( LPSTR dst, LPCWSTR src, INT n ); 105 INT __cdecl CRTDLL_wctomb( LPSTR dst, WCHAR ch ); 106 71 107 #endif /* __WINE_CRTDLL_H */ -
trunk/include/win/debugtools.h
r890 r2341 2 2 #ifndef __WINE_DEBUGTOOLS_H 3 3 #define __WINE_DEBUGTOOLS_H 4 5 #ifdef __WIN32OS2__ 6 #include <odinwrap.h> 7 #include <misc.h> 8 #endif 4 9 5 10 #ifdef __WINE__ /* Debugging interface is internal to Wine */ … … 79 84 #ifdef __WIN32OS2__ 80 85 # undef DECLARE_DEBUG_CHANNEL 81 # define DECLARE_DEBUG_CHANNEL (ch)86 # define DECLARE_DEBUG_CHANNEL ODINDEBUGCHANNEL 82 87 # undef DEFAULT_DEBUG_CHANNEL 83 # define DEFAULT_DEBUG_CHANNEL (ch)88 # define DEFAULT_DEBUG_CHANNEL ODINDEBUGCHANNEL 84 89 # undef TRACE 85 90 # define TRACE WriteLog
Note:
See TracChangeset
for help on using the changeset viewer.