| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Compatibility-like things for windows. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * $Id$  | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-04-16 22:40:48 +00:00
										 |  |  |  * ***** BEGIN GPL LICENSE BLOCK ***** | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * as published by the Free Software Foundation; either version 2 | 
					
						
							| 
									
										
										
										
											2008-04-16 22:40:48 +00:00
										 |  |  |  * of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software Foundation, | 
					
						
							| 
									
										
										
										
											2010-02-12 13:34:04 +00:00
										 |  |  |  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is: all of this file. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contributor(s): none yet. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-04-16 22:40:48 +00:00
										 |  |  |  * ***** END GPL LICENSE BLOCK ***** | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-09-24 11:46:17 +00:00
										 |  |  |   | 
					
						
							| 
									
										
										
										
											2009-09-24 19:50:15 +00:00
										 |  |  | #ifndef __WINSTUFF_H__
 | 
					
						
							|  |  |  | #define __WINSTUFF_H__
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 11:25:39 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 11:46:17 +00:00
										 |  |  | #ifndef FREE_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | #pragma warning(once: 4761 4305 4244 4018)
 | 
					
						
							| 
									
										
										
										
											2009-09-24 11:46:17 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define WIN32_LEAN_AND_MEAN
 | 
					
						
							| 
									
										
										
										
											2005-03-19 20:04:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef WIN32_SKIP_HKEY_PROTECTION
 | 
					
						
							|  |  |  | #define HKEY WIN32_HKEY				// prevent competing definitions
 | 
					
						
							|  |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | #undef HKEY
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2005-03-19 20:04:25 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef near
 | 
					
						
							|  |  |  | #undef far
 | 
					
						
							|  |  |  | #undef rad
 | 
					
						
							|  |  |  | #undef rad1
 | 
					
						
							|  |  |  | #undef rad2
 | 
					
						
							|  |  |  | #undef rad3
 | 
					
						
							|  |  |  | #undef vec
 | 
					
						
							|  |  |  | #undef rect
 | 
					
						
							|  |  |  | #undef rct1
 | 
					
						
							|  |  |  | #undef rct2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define near clipsta
 | 
					
						
							|  |  |  | #define far clipend
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef small
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 19:50:15 +00:00
										 |  |  | // These definitions are also in arithb for simplicity
 | 
					
						
							| 
									
										
										
										
											2005-03-19 20:04:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-22 15:00:30 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-06 13:20:05 +00:00
										 |  |  | #define _USE_MATH_DEFINES
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | #define MAXPATHLEN MAX_PATH
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-01 22:41:22 +00:00
										 |  |  | #ifndef S_ISREG
 | 
					
						
							| 
									
										
										
										
											2010-07-14 22:16:56 +00:00
										 |  |  | #define S_ISREG(x) (((x)&_S_IFREG) == _S_IFREG)
 | 
					
						
							| 
									
										
										
										
											2002-12-01 22:41:22 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef S_ISDIR
 | 
					
						
							| 
									
										
										
										
											2010-07-14 22:16:56 +00:00
										 |  |  | #define S_ISDIR(x) (((x)&_S_IFDIR) == _S_IFDIR)
 | 
					
						
							| 
									
										
										
										
											2002-12-01 22:41:22 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-06 13:20:05 +00:00
										 |  |  | /* defines for using ISO C++ conformant names */ | 
					
						
							|  |  |  | #define open _open
 | 
					
						
							|  |  |  | #define close _close
 | 
					
						
							|  |  |  | #define write _write
 | 
					
						
							|  |  |  | #define read _read
 | 
					
						
							|  |  |  | #define getcwd _getcwd
 | 
					
						
							|  |  |  | #define chdir _chdir
 | 
					
						
							|  |  |  | #define strdup _strdup
 | 
					
						
							|  |  |  | #define lseek _lseek
 | 
					
						
							|  |  |  | #define getpid _getpid
 | 
					
						
							|  |  |  | #define snprintf _snprintf
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-24 20:04:37 +00:00
										 |  |  | #ifndef FREE_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | typedef unsigned int mode_t; | 
					
						
							| 
									
										
										
										
											2003-05-24 20:04:37 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 10:41:28 +00:00
										 |  |  | /* mingw using _SSIZE_T_ to declare ssize_t type */ | 
					
						
							| 
									
										
										
										
											2009-09-24 10:04:43 +00:00
										 |  |  | #ifndef _SSIZE_T_
 | 
					
						
							|  |  |  | #define _SSIZE_T_
 | 
					
						
							| 
									
										
										
										
											2009-09-24 10:41:28 +00:00
										 |  |  | /* python uses HAVE_SSIZE_T */ | 
					
						
							|  |  |  | #ifndef HAVE_SSIZE_T
 | 
					
						
							|  |  |  | #define HAVE_SSIZE_T 1
 | 
					
						
							|  |  |  | typedef long ssize_t; | 
					
						
							| 
									
										
										
										
											2009-09-24 09:29:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-09-24 10:04:43 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-09-24 09:29:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | struct dirent { | 
					
						
							|  |  |  | 	int d_ino; | 
					
						
							|  |  |  | 	int d_off; | 
					
						
							|  |  |  | 	unsigned short d_reclen; | 
					
						
							|  |  |  | 	char *d_name; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct _DIR { | 
					
						
							|  |  |  | 	HANDLE handle; | 
					
						
							|  |  |  | 	WIN32_FIND_DATA data; | 
					
						
							|  |  |  | 	char path[MAX_PATH]; | 
					
						
							|  |  |  | 	long dd_loc; | 
					
						
							|  |  |  | 	long dd_size; | 
					
						
							|  |  |  | 	char dd_buf[4096]; | 
					
						
							|  |  |  | 	void *dd_direct; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	struct dirent direntry; | 
					
						
							|  |  |  | } DIR; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RegisterBlendExtension(char * str); | 
					
						
							|  |  |  | DIR *opendir (const char *path); | 
					
						
							|  |  |  | struct dirent *readdir(DIR *dp); | 
					
						
							|  |  |  | int closedir (DIR *dp); | 
					
						
							| 
									
										
										
										
											2008-04-29 21:43:17 +00:00
										 |  |  | void get_default_root(char *root); | 
					
						
							|  |  |  | int check_file_chars(char *filename); | 
					
						
							| 
									
										
										
										
											2009-10-20 19:09:12 +00:00
										 |  |  | char *dirname(char *path); | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-20 10:02:00 +00:00
										 |  |  | #ifdef WIN32
 | 
					
						
							|  |  |  | int BLI_getInstallationDir(char *str); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-22 15:00:30 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 11:25:39 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-12 11:37:38 +00:00
										 |  |  | #endif /* __WINSTUFF_H__ */
 | 
					
						
							| 
									
										
										
										
											2002-10-30 02:07:20 +00:00
										 |  |  | 
 |