/*****************************************************************************
Copyright (c) 2006 Analog Devices.  All Rights Reserved.

This software is proprietary and confidential.  By using this software you agree
to the terms of the associated Analog Devices License Agreement.  
******************************************************************************

$File: usb_fileio.h $
$Revision: 1.1 $
$Date: 2008/03/17 14:50:34 $

Project:    Audio Kit
Title:      USB_FILEIO
Author(s):  ADA
Revised by:

Description:
		This module implements USB fileio workarounds
		Currently, fread (and fwrite??) via USB on the demo kit has problems when reading odd size blocks.
		The temporary solution is to read data into an interim buffer

*********************************************************************************		
	
Modification History:
====================
$Log: usb_fileio.h,v $
Revision 1.1  2008/03/17 14:50:34  gstephan
Updates for SDK 3.00


	
*********************************************************************************/

#ifndef USB_FILEIO__H
#define USB_FILEIO__H

// Function declarations

// demo kit USB fread
int usbio_fread(unsigned char *dst, int blk_size, FILE *fileptr);

// demo kit USB fwrite
int usbio_fwrite(unsigned char *src, int blk_size, FILE *fileptr);

#endif // #ifndef USB_FILEIO__H

