blob: cb2d8226656786e39620ff04caa97b7037c197a9 [file] [log] [blame]
Jack Jansen42218ce1997-01-31 16:15:11 +00001/***********************************************************
2Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
16
17While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
29
30******************************************************************/
Guido van Rossum2d167031994-09-16 10:54:21 +000031
32/*
33 * macsetfiletype - Set the mac's idea of file type
34 *
35 */
36
Guido van Rossum950d47f1994-10-01 14:24:17 +000037#include "macdefs.h"
Guido van Rossum2d167031994-09-16 10:54:21 +000038
39int
40setfiletype(name, creator, type)
41char *name;
42long creator, type;
43{
44 FInfo info;
45 unsigned char *pname;
46
Jack Jansend50e4e11995-01-18 13:58:04 +000047 pname = (StringPtr) Pstring(name);
Guido van Rossum2d167031994-09-16 10:54:21 +000048 if ( GetFInfo(pname, 0, &info) < 0 )
49 return -1;
50 info.fdType = type;
51 info.fdCreator = creator;
52 return SetFInfo(pname, 0, &info);
53}
54
Jack Jansenb3642571995-02-13 11:31:51 +000055long
56getfiletype(name)
57char *name;
58{
59 FInfo info;
60 unsigned char *pname;
61
62 pname = (StringPtr) Pstring(name);
63 if ( GetFInfo(pname, 0, &info) < 0 )
64 return -1;
65 return info.fdType;
66}
67