blob: b2d9531e5f480ef1ff0067439cd1d01fa3b9dbf7 [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
Jack Jansen9ae898b2000-07-11 21:16:03 +000037#include "Python.h"
38#include "macglue.h"
Guido van Rossum950d47f1994-10-01 14:24:17 +000039#include "macdefs.h"
Guido van Rossum2d167031994-09-16 10:54:21 +000040
41int
Jack Jansen9ae898b2000-07-11 21:16:03 +000042PyMac_setfiletype(name, creator, type)
Guido van Rossum2d167031994-09-16 10:54:21 +000043char *name;
44long creator, type;
45{
46 FInfo info;
Jack Jansen33d1ad22000-06-02 21:29:59 +000047 FSSpec fss;
Guido van Rossum2d167031994-09-16 10:54:21 +000048 unsigned char *pname;
49
Jack Jansend50e4e11995-01-18 13:58:04 +000050 pname = (StringPtr) Pstring(name);
Jack Jansen33d1ad22000-06-02 21:29:59 +000051 if (FSMakeFSSpec(0, 0, pname, &fss) < 0 )
52 return -1;
53 if ( FSpGetFInfo(&fss, &info) < 0 )
Guido van Rossum2d167031994-09-16 10:54:21 +000054 return -1;
55 info.fdType = type;
56 info.fdCreator = creator;
Jack Jansen33d1ad22000-06-02 21:29:59 +000057 return FSpSetFInfo(&fss, &info);
Guido van Rossum2d167031994-09-16 10:54:21 +000058}
59
Jack Jansenb3642571995-02-13 11:31:51 +000060long
Jack Jansen9ae898b2000-07-11 21:16:03 +000061PyMac_getfiletype(name)
Jack Jansenb3642571995-02-13 11:31:51 +000062char *name;
63{
64 FInfo info;
65 unsigned char *pname;
Jack Jansen33d1ad22000-06-02 21:29:59 +000066 FSSpec fss;
Jack Jansenb3642571995-02-13 11:31:51 +000067
68 pname = (StringPtr) Pstring(name);
Jack Jansen33d1ad22000-06-02 21:29:59 +000069 if (FSMakeFSSpec(0, 0, pname, &fss) < 0 )
70 return -1;
71 if ( FSpGetFInfo(&fss, &info) < 0 )
Jack Jansenb3642571995-02-13 11:31:51 +000072 return -1;
73 return info.fdType;
74}
75