merge the formfield patch from ooo-build
[ooovba.git] / dmake / msdos / exec.h
blob2e82aaa3ea8a1ccc99e83937735bb45d8cbf24ae
1 /* RCS $Id: exec.h,v 1.1.1.1 2000-09-22 15:33:27 hr Exp $
2 --
3 -- SYNOPSIS
4 -- Internal version of exec for dmake.
5 --
6 -- DESCRIPTION
7 -- External defines for the exec.c code.
8 --
9 -- AUTHOR
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
12 -- WWW
13 -- http://dmake.wticorp.com/
15 -- COPYRIGHT
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
17 --
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
22 -- LOG
23 -- Use cvs log to obtain detailed change logs.
25 #ifndef _EXEC_h_
26 #define _EXEC_h_
28 #ifndef ANSI
29 #if defined(__STDC__) || defined(__TURBOC__)
30 #define ANSI(x) x
31 #else
32 #define ANSI(x) ()
33 #endif
34 #endif
36 extern int exec ANSI((int, char far *, char far *, unsigned int, char far *));
38 #ifndef MK_FP
39 #define MK_FP(seg,ofs) \
40 ((void far *) (((unsigned long)(seg) << 16) | (unsigned)(ofs)))
41 #endif
43 #endif