mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Make adflib build.
This commit is contained in:
61
dep/adflib/adf_nativ.h
Normal file
61
dep/adflib/adf_nativ.h
Normal file
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* adf_nativ.h
|
||||
*
|
||||
* $ID$
|
||||
*
|
||||
* This file is part of ADFLib.
|
||||
*
|
||||
* ADFLib 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.
|
||||
*
|
||||
* ADFLib 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 Foobar; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef ADF_NATIV_H
|
||||
#define ADF_NATIV_H
|
||||
|
||||
#include<stdio.h>
|
||||
#include"adf_str.h"
|
||||
|
||||
#define NATIVE_FILE 8001
|
||||
|
||||
#ifndef BOOL
|
||||
#define BOOL int
|
||||
#endif
|
||||
|
||||
#ifndef RETCODE
|
||||
#define RETCODE int32_t
|
||||
#endif
|
||||
|
||||
struct nativeDevice{
|
||||
FILE* fd;
|
||||
};
|
||||
|
||||
struct nativeFunctions{
|
||||
/* called by adfMount() */
|
||||
RETCODE (*adfInitDevice)(struct Device*, char*,BOOL);
|
||||
/* called by adfReadBlock() */
|
||||
RETCODE (*adfNativeReadSector)(struct Device*, int32_t, int, uint8_t*);
|
||||
/* called by adfWriteBlock() */
|
||||
RETCODE (*adfNativeWriteSector)(struct Device*, int32_t, int, uint8_t*);
|
||||
/* called by adfMount() */
|
||||
BOOL (*adfIsDevNative)(char*);
|
||||
/* called by adfUnMount() */
|
||||
RETCODE (*adfReleaseDevice)();
|
||||
};
|
||||
|
||||
void adfInitNativeFct();
|
||||
|
||||
#endif /* ADF_NATIV_H */
|
||||
|
||||
/*#######################################################################################*/
|
||||
Reference in New Issue
Block a user