Changeset 12924
- Timestamp:
- Jan 6, 2000, 9:03:04 PM (25 years ago)
- Location:
- tags/trunk/include
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/include/heapstring.h ¶
r12559 r12924 1 /* $Id: heapstring.h,v 1. 7 1999-12-05 10:02:01sandervl Exp $ */1 /* $Id: heapstring.h,v 1.8 2000-01-06 20:03:03 sandervl Exp $ */ 2 2 3 3 /* … … 9 9 */ 10 10 11 #include <odin.h> 11 12 12 13 /***************************************************************************** -
TabularUnified tags/trunk/include/misc.h ¶
r12684 r12924 1 /* $Id: misc.h,v 1.1 3 1999-12-17 17:25:28sandervl Exp $ */1 /* $Id: misc.h,v 1.14 2000-01-06 20:03:03 sandervl Exp $ */ 2 2 3 3 /* … … 10 10 #define __MISC_H__ 11 11 12 #if !defined(_OS2WIN_H) && !defined(__INCLUDE_WINUSER_H) && !defined(__WINE_WINBASE_H) 12 #if !defined(_OS2WIN_H) && !defined(__INCLUDE_WINUSER_H) && !defined(__WINE_WINBASE_H) && !defined(__WINE_WINDEF_H) 13 13 #include <win32type.h> 14 14 #endif … … 69 69 70 70 // necessary types 71 #ifndef __WINE_WINDEF_H 71 72 #ifdef ULONG 72 73 #error ULONG definition is bad. … … 77 78 typedef unsigned long HMODULE; 78 79 #endif 80 #endif //!__WINE_WINDEF_H 79 81 80 82 #ifndef SYSTEM -
TabularUnified tags/trunk/include/odinwrap.h ¶
r12825 r12924 1 /* $Id: odinwrap.h,v 1.1 8 1999-12-29 08:32:00 phallerExp $ */1 /* $Id: odinwrap.h,v 1.19 2000-01-06 20:03:03 sandervl Exp $ */ 2 2 3 3 /* … … 14 14 #define _ODINWRAP_H_ 15 15 16 #include <os2sel.h> 16 17 17 18 /**************************************************************************** -
TabularUnified tags/trunk/include/win/crtdll.h ¶
r12471 r12924 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 */ -
TabularUnified tags/trunk/include/win/debugtools.h ¶
r11483 r12924 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 -
TabularUnified tags/trunk/include/winexebase.h ¶
r12419 r12924 1 /* $Id: winexebase.h,v 1. 2 1999-11-24 19:33:34 sandervl Exp $ */1 /* $Id: winexebase.h,v 1.3 2000-01-06 20:03:04 sandervl Exp $ */ 2 2 3 3 /* … … 24 24 virtual ~Win32ExeBase(); 25 25 26 void setCommandLine(char *cline) { cmdline = cline; }; 27 char *getCommandLine() { return cmdline; }; 26 void setCommandLine(char *cline); 27 LPSTR getCommandLineA() { return cmdLineA; }; 28 LPWSTR getCommandLineW() { return cmdLineW; }; 28 29 29 30 BOOL isConsoleApp() { return fConsoleApp; }; … … 34 35 35 36 protected: 36 char *cmdline; 37 BOOL fConsoleApp; 37 LPSTR cmdLineA; 38 LPWSTR cmdLineW; 39 BOOL fConsoleApp; 38 40 39 41 private:
Note:
See TracChangeset
for help on using the changeset viewer.