DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2004 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00025 // pre-processor mechanism so multiple inclusions don't cause compilation error 00026 00027 #ifndef _STBDBRAM_H 00028 00029 #define _STBDBRAM_H 00030 00031 //---Constant and macro definitions for public use----------------------------- 00032 00033 //---Enumerations for public use----------------------------------------------- 00034 00035 //---Global type defs for public use------------------------------------------- 00036 00037 //---Global Function prototypes for public use--------------------------------- 00038 00039 void STB_InitRAMAccess(void); 00040 void STB_PurgeRAMRecords(void); 00041 00042 void* STB_CreateRAMRecord(U8BIT rec_id, U16BIT size, U16BIT nvm_block, void *parent); 00043 void STB_DestroyRAMRecord(void *rec_ptr); 00044 00045 U8BIT STB_GetRAMRecordId(void *rec_ptr); 00046 U16BIT STB_GetRAMRecordNVMBlock(void *rec_ptr); 00047 U16BIT STB_GetRAMRecordPrevNVMBlock(void *rec_ptr); 00048 U16BIT STB_GetRAMRecordNextNVMBlock(void *rec_ptr); 00049 void* STB_GetRAMRecordParent(void *rec_ptr); 00050 void STB_SetRAMRecordParent(void *rec_ptr, void *parent); 00051 00052 void STB_MoveRAMRecordBefore(void *rec_ptr, void *dst_ptr); 00053 void STB_MoveRAMRecordAfter(void *rec_ptr, void *dst_ptr); 00054 00055 void* STB_FindRAMRecordFromId(U8BIT rec_id, void *parent, void *last_rec); 00056 void* STB_FindRAMRecordFromNVMBlock(U16BIT nvm_block); 00057 00058 void STB_SetRAMRecordField(void *data_ptr, U16BIT offset, U16BIT size, U32BIT value, E_DBA_FIELD_TYPE type); 00059 U32BIT STB_GetRAMRecordField(void *data_ptr, U16BIT offset, U16BIT size, E_DBA_FIELD_TYPE type); 00060 00061 #endif // _STBDBRAM_H 00062 00063 //***************************************************************************** 00064 // End of file 00065 //***************************************************************************** 00066