FireBirdLib - Topfield TMS PVR TAP Programming Library
INICloseFile.c
Go to the documentation of this file.
1#include <stdlib.h>
2#include "FBLib_ini.h"
3#include "libFireBird.h"
4
5void INICloseFile(void)
6{
8
9 if(INIBuffer != NULL)
10 {
11 TAP_MemFree(INIBuffer);
12 INIBuffer = NULL;
13 BufferSize = 0;
14 }
15
16 if(INICommentBuffer != NULL)
17 {
18 TAP_MemFree(INICommentBuffer);
19 INICommentBuffer = NULL;
20 }
21
22 TRACEEXIT();
23}
dword BufferSize
Definition: INIOpenFile.c:7
char * INIBuffer
Definition: INIOpenFile.c:6
char * INICommentBuffer
Definition: FBLib_ini.h:9
void INICloseFile(void)
Definition: INICloseFile.c:5
#define TRACEEXIT()
Definition: libFireBird.h:1244
#define TRACEENTER()
Definition: libFireBird.h:1243