]> git.jsancho.org Git - lugaru.git/commitdiff
Removed old OS9 code stuff.
authorRyan C. Gordon <icculus@icculus.org>
Fri, 14 May 2010 05:15:18 +0000 (01:15 -0400)
committerRyan C. Gordon <icculus@icculus.org>
Fri, 14 May 2010 05:15:18 +0000 (01:15 -0400)
Source/Carbon Include.h [deleted file]
Source/Carbon.r [deleted file]
Source/CarbonStdCLib.h [deleted file]

diff --git a/Source/Carbon Include.h b/Source/Carbon Include.h
deleted file mode 100644 (file)
index 1dffa80..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
-Copyright (C) 2003, 2010 - Wolfire Games
-
-This file is part of Lugaru.
-
-Lugaru 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
-of the License, or (at your option) any later version.
-
-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, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-*/
-
-// Carbon Include.h
-
-// Put Carbon specific stuff here to maintain 9/Carbon buildability...
-
-
-#define TARGET_API_MAC_CARBON 1
\ No newline at end of file
diff --git a/Source/Carbon.r b/Source/Carbon.r
deleted file mode 100644 (file)
index ca7d3dd..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/*\r *  Permit this Carbon application to launch on OS X\r *\r *  Copyright © 1997-2001 Metrowerks Corporation\r *\r *  Questions and comments to:\r *       <mailto:support@metrowerks.com>\r *       <http://www.metrowerks.com/>\r */\r\r\r\r/*----------------------------carb ¥ Carbon on OS X launch information --------------------------*/\rtype 'carb' {\r};\r\r\rresource 'carb'(0) {\r};
\ No newline at end of file
diff --git a/Source/CarbonStdCLib.h b/Source/CarbonStdCLib.h
deleted file mode 100644 (file)
index de2f90b..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
-Copyright (C) 2003, 2010 - Wolfire Games
-
-This file is part of Lugaru.
-
-Lugaru 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
-of the License, or (at your option) any later version.
-
-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, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-*/
-
-/************************************************************
-
-    CarbonStdCLib.h
-    Assorted helper functions associated with CarbonStdClib.o.
-
-    Copyright Apple Computer,Inc.  2001
-    All rights reserved
-
- * Warning:  This interface is NOT a part of the ANSI C standard.
- *           This header file is not POSIX compliant.
- *           For portable code, don't use this interface.
-
-************************************************************/
-
-
-#ifndef __CARBONSTDCLIB__
-#define __CARBONSTDCLIB__
-
-#ifndef __CONDITIONALMACROS__
-#include <ConditionalMacros.h>
-#endif
-
-#if defined (__powerc) || defined (powerc) || defined (__CFM68K__)
-    #pragma import on
-#endif
-
-#if __cplusplus
-extern "C" {
-#endif  /* __cplusplus */
-
-#if !(CALL_NOT_IN_CARBON || __MPWINTERNAL__)
-
-extern void InitCarbonStdCLib( void ) ;
-extern void TermCarbonStdCLib( void ) ;
-
-extern void ConvertUnixPathToHFSPath(const char *unixPath, char *hfsPath) ;
-extern void ConvertHFSPathToUnixPath(const char *hfsPath, char *unixPath) ;
-
-/* BSD functions */
-
-int bsd_chdir(const char *path) ;
-int bsd_chmod(const char *path , int mode) ;
-
-#endif
-
-#if __cplusplus
-}
-#endif  /* __cplusplus */
-
-#if defined (__powerc) || defined (powerc) || defined (__CFM68K__)
-    #pragma import off
-#endif
-
-#endif  /* __CARBONSTDCLIB__ */
-