update dev300-m57
[ooovba.git] / dmake / mac / tomacfil.c
blobdb4d6ab72ad76d29f7b6e858bfdba4c76a54c431
1 /* RCS $Id: tomacfil.c,v 1.1.1.1 2000-09-22 15:33:27 hr Exp $
2 --
3 -- SYNOPSIS
4 -- Routines to change unix file names to mac file names
5 --
6 -- DESCRIPTION
7 -- Dmake sometimes assumes that files have '/' as a directory parameter in some makefiles.
8 -- This works, even on DOS, but not on the Mac. In fact, on the Mac, you can't even do a
9 -- a simple switch of ':' for '/' because all other the Mac has decided to reverse the use
10 -- of a first-character directory delimiter to mean a relative path rather than absolute path.
11 -- (i.e., ':test:b' means directory test is relative to the current directory, rather than
12 -- a top-level directory. Thus, this file attempts to do the directory conversion behind
13 -- the back of the rest of the program.
15 -- AUTHOR
16 -- Dennis Vadura, dvadura@dmake.wticorp.com
19 -- WWW
20 -- http://dmake.wticorp.com/
22 -- COPYRIGHT
23 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
24 --
25 -- This program is NOT free software; you can redistribute it and/or
26 -- modify it under the terms of the Software License Agreement Provided
27 -- in the file <distribution-root>/readme/license.txt.
29 -- LOG
30 -- Use cvs log to obtain detailed change logs.
33 /* This file no longer contains an override to the fopen() function as we now accept only
34 * Mac style path names
36 #include <Files.h>
38 #include "extern.h"