1997-01-31 12:15:11 -04:00
|
|
|
/***********************************************************
|
|
|
|
Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
|
|
|
|
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
******************************************************************/
|
1994-09-16 07:54:21 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* macsetfiletype - Set the mac's idea of file type
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1994-10-01 11:24:17 -03:00
|
|
|
#include "macdefs.h"
|
1994-09-16 07:54:21 -03:00
|
|
|
|
|
|
|
int
|
|
|
|
setfiletype(name, creator, type)
|
|
|
|
char *name;
|
|
|
|
long creator, type;
|
|
|
|
{
|
|
|
|
FInfo info;
|
|
|
|
unsigned char *pname;
|
|
|
|
|
1995-01-18 09:58:04 -04:00
|
|
|
pname = (StringPtr) Pstring(name);
|
1994-09-16 07:54:21 -03:00
|
|
|
if ( GetFInfo(pname, 0, &info) < 0 )
|
|
|
|
return -1;
|
|
|
|
info.fdType = type;
|
|
|
|
info.fdCreator = creator;
|
|
|
|
return SetFInfo(pname, 0, &info);
|
|
|
|
}
|
|
|
|
|
1995-02-13 07:31:51 -04:00
|
|
|
long
|
|
|
|
getfiletype(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
FInfo info;
|
|
|
|
unsigned char *pname;
|
|
|
|
|
|
|
|
pname = (StringPtr) Pstring(name);
|
|
|
|
if ( GetFInfo(pname, 0, &info) < 0 )
|
|
|
|
return -1;
|
|
|
|
return info.fdType;
|
|
|
|
}
|
|
|
|
|