Plan 9 from Bell Labs’s /usr/web/sources/contrib/gabidiaz/root/sys/src/cmd/perl/NetWare/win32ish.h

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.



/*
 * 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__


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.