1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*
Import.h
*/
#ifndef __IMPORT_H
#define __IMPORT_H
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <string.h>
#include <sys/wait.h>
#include <ctype.h>
#include <syslog.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "Config.h"
#include "Utils.h"
#include "XSocket.h"
#include "HTMLBasic.h"
#include "Skin.h"
#include "Language.h"
#include "CCLIENT.h"
#include "SendMSG.h"
#include "UserOptions.h"
#include "Configuration.h"
#include "Addressbook.h"
#include "rutinas_db.h"
#include "PsTitle.h"
#include "ClientNNTP.h"
#include "Authentication.h"
class TTProgData
{
public:
int service, cmd, cmd_counter;
TBuffer maincfg, imapserver, username, password, stlang, connid, ipclient, envfile, stcmd, stsubcmd,
allparms, allparms2, parm1, parm2, parm3, parm4;
XSocket *xs;
UserOptions *uo;
Skin *skin;
HTMLBasic *html;
void *utility;
};
typedef struct TTProgData TProgData;
#endif
|