bon, je refout mon code plus proprement:
LanTache.cpp:
#include "stdafx.h"
#include "LanApp.h"
#include "LanTache.h"
CLanTache::CLanTache ()
{
int num = 0;
// Retour
return;
}
BOOL CLanTache::InitTache(int _num, char _type, CString _type2, CString _arg1, CString _arg2, CString _libelle)
{
return TRUE;
}
LanTache.h:
class CLanTache : public CObject
{
public:
//constructeur
CLanTache ();
BOOL InitTache(int _num, char _type, CString _type2, CString _arg1, CString _arg2, CString _libelle);
protected:
// Définition de la structure des tâches
typedef struct _TACHE
{
int num;
char type
CString type2
CString arg1;
CString arg2;
CString libelle;
} TACHE;
TACHE m_tache;
}