1
0
Fork 0

new include system + lot's of classes maintaining certain aspects of dosbox

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2140
This commit is contained in:
Peter Veenstra 2005-03-24 21:11:05 +00:00
parent a9accb3243
commit 224ef1a68b
3 changed files with 52 additions and 11 deletions

View file

@ -16,13 +16,14 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#if !defined __SUPPORT_H
#define __SUPPORT_H
#ifndef DOSBOX_SUPPORT_H
#define DOSBOX_SUPPORT_H
#include <string.h>
#include <ctype.h>
#ifndef DOSBOX_DOSBOX_H
#include "dosbox.h"
#endif
#if defined (_MSC_VER) /* MS Visual C++ */
#define strcasecmp(a,b) stricmp(a,b)
@ -62,4 +63,3 @@ INLINE char * lowcase(char * str) {
#endif