Imported Upstream version 21
[debian/pforth] / csrc / pf_win32.h
1 /* @(#) pf_win32.h 98/01/26 1.2 */
2 #ifndef _pf_win32_h
3 #define _pf_win32_h
4
5 /***************************************************************
6 ** WIN32 dependant include file for PForth, a Forth based on 'C'
7 **
8 ** Author: Phil Burk
9 ** Copyright 1994 3DO, Phil Burk, Larry Polansky, Devid Rosenboom
10 **
11 ** The pForth software code is dedicated to the public domain,
12 ** and any third party may reproduce, distribute and modify
13 ** the pForth software code or any derivative works thereof
14 ** without any compensation or license.  The pForth software
15 ** code is provided on an "as is" basis without any warranty
16 ** of any kind, including, without limitation, the implied
17 ** warranties of merchantability and fitness for a particular
18 ** purpose and their equivalents under the laws of any jurisdiction.
19 **
20 ***************************************************************/
21
22 /* Include as PF_USER_INC2 for PCs */
23
24 /* Modify some existing defines. */
25 /*
26 ** The PC will insert LF characters into the dictionary files unless
27 ** we use "b" mode!
28 */
29 #undef PF_FAM_CREATE
30 #define PF_FAM_CREATE  ("wb+")
31
32 #undef PF_FAM_OPEN_RO
33 #define PF_FAM_OPEN_RO  ("rb")
34
35 #undef PF_FAM_OPEN_RW
36 #define PF_FAM_OPEN_RW  ("rb+")
37 \r
38 #define LITTLE_ENDIAN\r
39
40 #endif /* _pf_win32_h */