169 lines
5.3 KiB
C
169 lines
5.3 KiB
C
/*
|
|
* Definitions for Unix libraries
|
|
*
|
|
* Copyright (C) 2021 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __WINE_WINE_UNIXLIB_H
|
|
#define __WINE_WINE_UNIXLIB_H
|
|
|
|
typedef NTSTATUS (*unixlib_entry_t)( void *args );
|
|
typedef UINT64 unixlib_handle_t;
|
|
|
|
extern NTSTATUS WINAPI __wine_unix_call( unixlib_handle_t handle, unsigned int code, void *args );
|
|
|
|
#ifdef WINE_UNIX_LIB
|
|
|
|
/* some useful helpers from ntdll */
|
|
extern const char *ntdll_get_build_dir(void);
|
|
extern const char *ntdll_get_data_dir(void);
|
|
extern DWORD ntdll_umbstowcs( const char *src, DWORD srclen, WCHAR *dst, DWORD dstlen );
|
|
extern int ntdll_wcstoumbs( const WCHAR *src, DWORD srclen, char *dst, DWORD dstlen, BOOL strict );
|
|
extern int ntdll_wcsicmp( const WCHAR *str1, const WCHAR *str2 );
|
|
extern int ntdll_wcsnicmp( const WCHAR *str1, const WCHAR *str2, int n );
|
|
extern NTSTATUS ntdll_init_syscalls( ULONG id, SYSTEM_SERVICE_TABLE *table, void **dispatcher );
|
|
|
|
/* exception handling */
|
|
|
|
#ifdef __i386__
|
|
typedef struct { int reg[16]; } __wine_jmp_buf;
|
|
#elif defined(__x86_64__)
|
|
typedef struct { DECLSPEC_ALIGN(16) struct { unsigned __int64 Part[2]; } reg[16]; } __wine_jmp_buf;
|
|
#elif defined(__arm__)
|
|
typedef struct { int reg[28]; } __wine_jmp_buf;
|
|
#elif defined(__aarch64__)
|
|
typedef struct { __int64 reg[24]; } __wine_jmp_buf;
|
|
#else
|
|
typedef struct { int reg; } __wine_jmp_buf;
|
|
#endif
|
|
|
|
extern int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) __wine_setjmpex( __wine_jmp_buf *buf,
|
|
EXCEPTION_REGISTRATION_RECORD *frame );
|
|
extern void DECLSPEC_NORETURN __cdecl __wine_longjmp( __wine_jmp_buf *buf, int retval );
|
|
extern void ntdll_set_exception_jmp_buf( __wine_jmp_buf *jmp );
|
|
|
|
#define __TRY \
|
|
do { __wine_jmp_buf __jmp; \
|
|
int __first = 1; \
|
|
for (;;) if (!__first) \
|
|
{ \
|
|
do {
|
|
|
|
#define __EXCEPT \
|
|
} while(0); \
|
|
ntdll_set_exception_jmp_buf( NULL ); \
|
|
break; \
|
|
} else { \
|
|
if (__wine_setjmpex( &__jmp, NULL )) { \
|
|
do {
|
|
|
|
#define __ENDTRY \
|
|
} while (0); \
|
|
break; \
|
|
} \
|
|
ntdll_set_exception_jmp_buf( &__jmp ); \
|
|
__first = 0; \
|
|
} \
|
|
} while (0);
|
|
|
|
NTSTATUS WINAPI KeUserModeCallback( ULONG id, const void *args, ULONG len, void **ret_ptr, ULONG *ret_len );
|
|
|
|
/* wide char string functions */
|
|
|
|
static inline size_t ntdll_wcslen( const WCHAR *str )
|
|
{
|
|
const WCHAR *s = str;
|
|
while (*s) s++;
|
|
return s - str;
|
|
}
|
|
|
|
static inline WCHAR *ntdll_wcscpy( WCHAR *dst, const WCHAR *src )
|
|
{
|
|
WCHAR *p = dst;
|
|
while ((*p++ = *src++));
|
|
return dst;
|
|
}
|
|
|
|
static inline WCHAR *ntdll_wcscat( WCHAR *dst, const WCHAR *src )
|
|
{
|
|
ntdll_wcscpy( dst + ntdll_wcslen(dst), src );
|
|
return dst;
|
|
}
|
|
|
|
static inline int ntdll_wcscmp( const WCHAR *str1, const WCHAR *str2 )
|
|
{
|
|
while (*str1 && (*str1 == *str2)) { str1++; str2++; }
|
|
return *str1 - *str2;
|
|
}
|
|
|
|
static inline int ntdll_wcsncmp( const WCHAR *str1, const WCHAR *str2, int n )
|
|
{
|
|
if (n <= 0) return 0;
|
|
while ((--n > 0) && *str1 && (*str1 == *str2)) { str1++; str2++; }
|
|
return *str1 - *str2;
|
|
}
|
|
|
|
static inline WCHAR *ntdll_wcschr( const WCHAR *str, WCHAR ch )
|
|
{
|
|
do { if (*str == ch) return (WCHAR *)(ULONG_PTR)str; } while (*str++);
|
|
return NULL;
|
|
}
|
|
|
|
static inline WCHAR *ntdll_wcsrchr( const WCHAR *str, WCHAR ch )
|
|
{
|
|
WCHAR *ret = NULL;
|
|
do { if (*str == ch) ret = (WCHAR *)(ULONG_PTR)str; } while (*str++);
|
|
return ret;
|
|
}
|
|
|
|
static inline WCHAR *ntdll_wcspbrk( const WCHAR *str, const WCHAR *accept )
|
|
{
|
|
for ( ; *str; str++) if (ntdll_wcschr( accept, *str )) return (WCHAR *)(ULONG_PTR)str;
|
|
return NULL;
|
|
}
|
|
|
|
static inline SIZE_T ntdll_wcsspn( const WCHAR *str, const WCHAR *accept )
|
|
{
|
|
const WCHAR *ptr;
|
|
for (ptr = str; *ptr; ptr++) if (!ntdll_wcschr( accept, *ptr )) break;
|
|
return ptr - str;
|
|
}
|
|
|
|
static inline SIZE_T ntdll_wcscspn( const WCHAR *str, const WCHAR *reject )
|
|
{
|
|
const WCHAR *ptr;
|
|
for (ptr = str; *ptr; ptr++) if (ntdll_wcschr( reject, *ptr )) break;
|
|
return ptr - str;
|
|
}
|
|
|
|
#define wcslen(str) ntdll_wcslen(str)
|
|
#define wcscpy(dst,src) ntdll_wcscpy(dst,src)
|
|
#define wcscat(dst,src) ntdll_wcscat(dst,src)
|
|
#define wcscmp(s1,s2) ntdll_wcscmp(s1,s2)
|
|
#define wcsncmp(s1,s2,n) ntdll_wcsncmp(s1,s2,n)
|
|
#define wcschr(str,ch) ntdll_wcschr(str,ch)
|
|
#define wcsrchr(str,ch) ntdll_wcsrchr(str,ch)
|
|
#define wcspbrk(str,ac) ntdll_wcspbrk(str,ac)
|
|
#define wcsspn(str,ac) ntdll_wcsspn(str,ac)
|
|
#define wcscspn(str,rej) ntdll_wcscspn(str,rej)
|
|
#define wcsicmp(s1, s2) ntdll_wcsicmp(s1,s2)
|
|
#define wcsnicmp(s1, s2,n) ntdll_wcsnicmp(s1,s2,n)
|
|
|
|
#endif /* WINE_UNIX_LIB */
|
|
|
|
#endif /* __WINE_WINE_UNIXLIB_H */
|