versadac  1
versadac - Scalable Recorder Firmware
cloning_memorysegment.h
1 #ifndef CLONING_MEMORYSEGMENT_H
2 #define CLONING_MEMORYSEGMENT_H
3 
4 /*****************************************************************************
5 * Copyright (c) 2010 Eurotherm Controls Ltd.
6 *
7 * FILENAME : Cloning_MemorySegment.h
8 * AUTHOR : Adrian Oliver
9 * CREATED : October 2010
10 * DESCRIPTION : Header file for cloning functionality
11 * DESIGN SPEC :
12 *****************************************************************************/
13 
14 
15 
16 /*****************************************************************************
17 * FUNCTION : Cloning_ProcessMemorySegment
18 * INPUT : fCloneFile FILE handle, pszNextString - pointer to resulting string
19 * RETURN : true/false success/failure
20 * GLOBAL :
21 * DESCRIPTION :
22 *****************************************************************************/
23 bool Cloning_ProcessMemorySegment(char* pszSegmentName, char* pszBeginning, FILE* fCloneFile, bool* pFirstRun);
24 
25 #endif