⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.h

📁 dsp 的内核编程在此呢
💻 H
字号:

#ifndef _CONFIGURE_H
#define _CONFIGURE_H_

/*----Configuration Functions:----*/

CfgNew();  // Create a new configuration
CfgFree(); // Destroy a configuration
CfgSetDefault(); // Set Default Configuration
CfgGetDefault(); // Get Default Configuration
CfgLoad(); // Load configuration from a linear memory buffer
CfgSave(); // Save configuration to a linear memory buffer
CfgSetExecuteOrder(); // Set the Tag Initialization and Shutdown Order on Execute
CfgExecute(); // Make the configuration active or inactive
CfgSetService(); // Sets service callback function for a particular tag
CfgAddEntry(); // Add a configuration entry to a configuration.
CfgRemoveEntry(); // Remove entry from configuration
CfgGetEntryCnt(); // Get the number of item instances for a tag/item pair
CfgGetEntry(); // Get a referenced handle to a configuration entry
CfgGetNextEntry(); // Return supplied entry handle and get next entry handle
CfgGetImmediate(); // Get configuration entry data w/o getting entry handle

/* ---Configuration Entry Functions:--- */

CfgEntryRef(); // Add a reference to a configuration entry handle
CfgEntryDeRef(); // Remove a reference to a configuration entry handle
CfgEntryGetData(); // Get configuration entry data from entry handle
CfgEntrySetData(); // Replace data block of entry data using entry handle
CfgEntryInfo(); // Get information on a configuration entry handle

#endif /*-- end configure.h here --*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -