cpython/Mac/Python/macsetfiletype.c

25 lines
370 B
C
Raw Normal View History

/*
* macsetfiletype - Set the mac's idea of file type
*
*/
1994-10-01 11:24:17 -03:00
#include "macdefs.h"
int
setfiletype(name, creator, type)
char *name;
long creator, type;
{
FInfo info;
unsigned char *pname;
pname = (StringPtr) Pstring(name);
if ( GetFInfo(pname, 0, &info) < 0 )
return -1;
info.fdType = type;
info.fdCreator = creator;
return SetFInfo(pname, 0, &info);
}