2003-06-21 04:07:10 +02:00
|
|
|
/*
|
|
|
|
* Kernel32 undocumented and private functions definition
|
|
|
|
*
|
|
|
|
* Copyright 2003 Eric Pouech
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-06-21 04:07:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_KERNEL_PRIVATE_H
|
|
|
|
#define __WINE_KERNEL_PRIVATE_H
|
|
|
|
|
2019-06-27 15:53:28 +02:00
|
|
|
NTSTATUS WINAPI BaseGetNamedObjectDirectory( HANDLE *dir );
|
2003-06-21 04:07:10 +02:00
|
|
|
|
2019-10-01 09:36:16 +02:00
|
|
|
static inline BOOL set_ntstatus( NTSTATUS status )
|
|
|
|
{
|
|
|
|
if (status) SetLastError( RtlNtStatusToDosError( status ));
|
|
|
|
return !status;
|
|
|
|
}
|
|
|
|
|
2013-01-08 22:02:21 +01:00
|
|
|
extern SYSTEM_BASIC_INFORMATION system_info DECLSPEC_HIDDEN;
|
2004-02-12 01:00:55 +01:00
|
|
|
|
2011-04-21 10:23:57 +02:00
|
|
|
extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc ) DECLSPEC_HIDDEN;
|
|
|
|
extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen ) DECLSPEC_HIDDEN;
|
2004-05-01 07:25:07 +02:00
|
|
|
|
2003-06-21 04:07:10 +02:00
|
|
|
#endif
|