From 2986a63f7e513cf37f46db9f211b77071260031f Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sat, 16 Jun 2001 19:46:38 +0000 Subject: NetWare port from Guruprasad S . p4raw-id: //depot/perl@10643 --- NetWare/win32ish.h | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 NetWare/win32ish.h (limited to 'NetWare/win32ish.h') diff --git a/NetWare/win32ish.h b/NetWare/win32ish.h new file mode 100644 index 0000000000..a8fcbcde25 --- /dev/null +++ b/NetWare/win32ish.h @@ -0,0 +1,46 @@ + +/* + * Copyright © 2001 Novell, Inc. All Rights Reserved. + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. + * + */ + +/* + * FILENAME : Win32ish.h + * DESCRIPTION : For Win32 type definitions like BOOL. + * Author : HYAK + * Date : January 2001. + * + */ + + + +#ifndef __Win32ish_H__ +#define __Win32ish_H__ + + +#ifndef BOOL + typedef unsigned int BOOL; +#endif + +#ifndef DWORD + typedef unsigned long DWORD; +#endif + +typedef DWORD LCID; +typedef long HRESULT; +typedef void* LPVOID; + +#ifndef TRUE + #define TRUE 1 +#endif + +#ifndef FALSE + #define FALSE 0 +#endif + + +#endif // __Win32ish_H__ + -- cgit v1.2.1