summaryrefslogtreecommitdiff
path: root/NetWare/win32ish.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-16 19:46:38 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-16 19:46:38 +0000
commit2986a63f7e513cf37f46db9f211b77071260031f (patch)
tree9a6e62602396938ea5a612420f53ebf267e8d941 /NetWare/win32ish.h
parent87b11a197a59fac210fc9265bde0ef1ffe36de89 (diff)
downloadperl-2986a63f7e513cf37f46db9f211b77071260031f.tar.gz
NetWare port from Guruprasad S <SGURUPRASAD@novell.com>.
p4raw-id: //depot/perl@10643
Diffstat (limited to 'NetWare/win32ish.h')
-rw-r--r--NetWare/win32ish.h46
1 files changed, 46 insertions, 0 deletions
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__
+