#include <gtk/gtk.h>
#include <liberregxml/erregapi.h>
#include "connectionMgrLog.h"
#include "commonData.h"
#include "connectScreenData.h"
#include "editScreenData.h"
#include "connectionMgrData.h"
Go to the source code of this file.
Functions | |
void | cmgr_data_init (void) |
void | cmgr_data_destroy (void) |
Copyright (C) 2007 iRex Technologies BV.
Definition in file connectionMgrData.c.
void cmgr_data_destroy | ( | void | ) |
Definition at line 47 of file connectionMgrData.c.
00048 { 00049 CN_LOGPRINTF("entry"); 00050 00051 common_data_destroy(); 00052 connect_data_destroy(); 00053 edit_data_destroy(); 00054 }
void cmgr_data_init | ( | void | ) |
Definition at line 36 of file connectionMgrData.c.
00037 { 00038 CN_LOGPRINTF("entry"); 00039 00040 cmgr_data_destroy(); 00041 00042 common_data_init(); 00043 connect_data_init(); 00044 edit_data_init(); 00045 }