/* usb/version.h
 *
 * (c) 2002 Simtec Electronics
 *
 * Vincent Sanders
 *
 * core version call
 *
 * $Id: version.h,v 1.3 2003/08/06 15:56:11 ben Exp $
 *
 * This Library file is part of the Simtec Electronics USB stack development
 *   suite.
 * Specific licence is granted to use this file by third parties for the
 *   development of USB device drivers.
 *
*/

#ifndef __USB_VERSION_H
#define __USB_VERSION_H "$Id: version.h,v 1.3 2003/08/06 15:56:11 ben Exp $"

/** return teh version of the usb core
 * parameters may be null if not required
 * @param apiver pointer to int to store api version in
 * @param modver pointer to int to store module version in
 * @param date pointer to date to store module build date in
 * @return non zero on error
 */
extern int usb_version(int * apiver,int * modver,char ** date);

#endif








