| 
									
										
										
										
											1997-01-31 16:15:11 +00: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 10:54:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *  macsetfiletype - Set the mac's idea of file type | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											1994-10-01 14:24:17 +00:00
										 |  |  | #include "macdefs.h"
 | 
					
						
							| 
									
										
										
										
											1994-09-16 10:54:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | setfiletype(name, creator, type) | 
					
						
							|  |  |  | char *name; | 
					
						
							|  |  |  | long creator, type; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	FInfo info; | 
					
						
							|  |  |  | 	unsigned char *pname; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1995-01-18 13:58:04 +00:00
										 |  |  | 	pname = (StringPtr) Pstring(name); | 
					
						
							| 
									
										
										
										
											1994-09-16 10:54:21 +00:00
										 |  |  | 	if ( GetFInfo(pname, 0, &info) < 0 ) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	info.fdType = type; | 
					
						
							|  |  |  | 	info.fdCreator = creator; | 
					
						
							|  |  |  | 	return SetFInfo(pname, 0, &info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-02-13 11:31:51 +00: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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |