configure.h

来自「dsp 的内核编程在此呢」· C头文件 代码 · 共 31 行

H
31
字号

#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 + =
减小字号Ctrl + -
显示快捷键?