mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-23 11:33:58 +00:00
aa3145856c
Focusing on the diskimg library this time, which deals with a lot of filesystem structures that have specific widths. This is still a bit lax in places, e.g. using "long" for lengths. Should either specify a bit width or use di_off_t. Also, added "override" keyword where appropriate. Also, bumped library version to 5.0.0.
73 lines
1.6 KiB
C
73 lines
1.6 KiB
C
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
#ifndef _WIN32
|
|
|
|
/* UNIX includes */
|
|
#include <stdarg.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <sys/time.h>
|
|
#include <fcntl.h>
|
|
#include <ctype.h>
|
|
|
|
#define O_BINARY 0
|
|
|
|
#define HAVE_VSNPRINTF
|
|
#define HAVE_FSEEKO
|
|
#define HAVE_FTRUNCATE
|
|
|
|
#else /*_WIN32*/
|
|
|
|
#if !defined(AFX_STDAFX_H__1CB7B33E_42BF_4A98_B814_4198EA8ACC58__INCLUDED_)
|
|
#define AFX_STDAFX_H__1CB7B33E_42BF_4A98_B814_4198EA8ACC58__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#define HAVE_WINDOWS_CDROM // enable CD-ROM access under Windows
|
|
#define HAVE_CHSIZE
|
|
|
|
|
|
// Insert your headers here
|
|
# define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
#include "../app/targetver.h"
|
|
|
|
#include <windows.h>
|
|
#include <atlstr.h>
|
|
#include <io.h>
|
|
#include <fcntl.h>
|
|
|
|
#ifdef HAVE_WINDOWS_CDROM
|
|
# include <winioctl.h>
|
|
#endif
|
|
|
|
#ifndef _SSIZE_T_DEFINED
|
|
typedef unsigned int ssize_t;
|
|
#define _SSIZE_T_DEFINED
|
|
#endif
|
|
|
|
#define HAVE__VSNPRINTF
|
|
#define strcasecmp stricmp
|
|
#define snprintf _snprintf
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_STDAFX_H__1CB7B33E_42BF_4A98_B814_4198EA8ACC58__INCLUDED_)
|
|
#endif /*_WIN32*/
|