You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 2
The AWECore API Header File.
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
#include "TargetProcessor.h"
#include "FlashFSInstance.h"
#include "Pin.h"
#include "AWEInstance.h"
Click to expand the full AWECore.h source code
/*******************************************************************************
*
* Audio Framework
* ---------------
*
********************************************************************************
* AWECore.h
********************************************************************************
*
* Description: AudioWeaver Framework main header file
*
* Copyright: (c) 2007-2021 DSP Concepts, Inc. All rights reserved.
* 3235 Kifer Road
* Santa Clara, CA 95054
*
*******************************************************************************/
#ifndef _FRAMEWORK_H
//Do nothing if Framework.h was previously included.
#ifndef _AWECORE_H
#define _AWECORE_H
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
// Include the TargetProcessor header that includes another processor specific header file.
#include "TargetProcessor.h"
#include "FlashFSInstance.h"
#include "Pin.h"
// Opaque declaration for framework structure ModClassModule
typedef void ModClassModule;
#include "AWEInstance.h"
#endif // _AWECORE_H
#endif // _FRAMEWORK_H