[VC++][MFC] Aide à la réalisation d'une application (pour débutants)

[VC++][MFC] Aide à la réalisation d'une application (pour débutants) - C++ - Programmation

Marsh Posté le 27-07-2005 à 13:23:24    

:jap: salut
j'utilise une ressource Dialog en vc++6.0, je travaille avec, tt est bien,je ferme le fichier,je l'ouvre une deuxiéme fois et ooop des erreurs de link
error LNK2001: unresolved external symbol __endthreadex
error LNK2001: unresolved external symbol __beginthreadex
error LNK2001: unresolved external symbol _main
fatal error LNK1120: 4 unresolved externals
Error executing link.exe.
 
why??


Message édité par d_imane le 30-07-2005 à 11:41:36
Reply

Marsh Posté le 27-07-2005 à 13:23:24   

Reply

Marsh Posté le 27-07-2005 à 15:19:31    

Reply

Marsh Posté le 27-07-2005 à 17:03:55    

oui j'ai tjs des problémes de biblio, mais cette fois ci j'ai enlever le afx

Reply

Marsh Posté le 27-07-2005 à 21:35:38    

j'ai les memes erreurs, avec seul la biblio #include<iostream> cqc a compris pourkoi???

Reply

Marsh Posté le 27-07-2005 à 23:05:09    

http://www.cryer.co.uk/brian/mswin [...] uesetx.htm


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 28-07-2005 à 00:59:14    

oui ca résout en cqc sorte le probléme ,le nombre d'erreur diminue maaaaaaaaaais, je ferme le programme, puis je l'ouvre je me retrouve avec les memes erreurs  en plus je perds toutes les ressources que j'ai céeer au début

Reply

Marsh Posté le 28-07-2005 à 01:51:12    

il m'affiche
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/ListBoxMenu.exe : fatal error LNK1120: 1 unresolved externals

Reply

Marsh Posté le 28-07-2005 à 02:05:18    

t'as créé quoi comme projet ? un projet console ?

Reply

Marsh Posté le 28-07-2005 à 02:34:33    

non une application MFC AppWizart

Reply

Marsh Posté le 28-07-2005 à 03:24:52    

pour etre plus clair, je prend l'exemple :
http://pomelo.ivia.es/mecanizacion [...] tion4.html
j'execute, je me retrouve avec les erreurs:  
--------------------Configuration: HelloDialog - Win32 Debug--------------------
Linking...
HelloDialog.obj : error LNK2001: unresolved external symbol "public: __thiscall CHelloDialogDlg::CHelloDialogDlg(class CWnd *)" (??0CHelloDialogDlg@@QAE@PAVCWnd@@@Z)
nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadex
nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __beginthreadex
libcd.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/HelloDialog.exe : fatal error LNK1120: 4 unresolved externals
Error executing link.exe.
 
HelloDialog.exe - 5 error(s), 0 warning(s)
 c'est le cas pour tt mes programmes
svp aidez moi!!!!!!

Reply

Marsh Posté le 28-07-2005 à 03:24:52   

Reply

Marsh Posté le 28-07-2005 à 09:40:05    

Tu as peut-être un conflit entre MSVCRT(D).LIB et LIBC(D).LIB
 
Va dans menu Project->Settings, Onglet "C/C++"->Category: "Code génération"->Use run-time library. Regarde la valeur incrite; tu devrais avoir sélectionné: "Debug multi-threaded DLL" en version DEBUG et "Multi-threaded DLL" en RELEASE. Sinon tu peux forcer la librairie à utiliser, en cochant "Ignore default Libraries" et en ajoutant la bibliothèque (MSVCRT(D).LIB ou LIBC(D).LIB).
Enfin ça rejoint ce que dit le lien que t'a passé Harkonnen. Par contre je vois pas pourquoi tu utilises LIBC.LIB, c'est la MSVCRT.LIB que tu devrais avoir => Je viens de regarder dans la MSDN: si tu utilises LIBC(D).LIB tu es dans la configuration (Debug) Single Threaded (ou ligne de commande /ML(d)); c'est mal!
Il y a une page dans la MSDN qui explique les modes de génération de code. Si tu as la version CD-ROM, saisi LIBC.LIB dans l'onglet "Index", en validant la ligne sélectionnée, tu tombes sur la page.
 
Ah oui pense à sauvegarder le PROJET après avoir modifié les options (c'est l'icône avec plusieurs disquettes superposées)
 
A noter, si tu inclus une librairie perso (au sens qu'elle ne fait pas partie de la distribution standard). Tu dois utiliser le même mode de génération de code.
 
Je vois que dans l'exemple cité tu manipules un dialogue. Je te conseille de le lier à ClassWizard, ça te facilitera la vie par la suite. Tu peux lier une classe après l'avoir crée en plaçant les balises {{AFX_xxx et }}AFX_xxx appropriée. Pour cela je t'invite à regarder la MSDN (Utilisation de Visual C++), c'est suffisament clair comme ça.


Message édité par slash33 le 28-07-2005 à 09:58:53
Reply

Marsh Posté le 28-07-2005 à 10:57:40    

ca m'embete vraiment
------Configuration: HelloDialog - Win32 Debug--------------
Linking...
LINK : fatal error LNK1104: cannot open file "LIBC(D).LIB"
Error executing link.exe.

Reply

Marsh Posté le 28-07-2005 à 13:37:04    

Whaou! C'est la première fois que je vois quelqu'un écrire EXACTEMENT ce que je lui donne comme info. Le (D) c'est parce qu'en DEBUG (flag _DEBUG actif), il vaut mieux utiliser les bibliothèques DEBUG. Donc pour la configuration DEBUG il faut utiliser MSVCRTD.LIB et pour la release MSVCRT.LIB. Dans les deux cas, tu n'as pas à le faire; il suffit de sélectionner le bon item dans Code génération (voir mon message précédent)

Reply

Marsh Posté le 28-07-2005 à 14:04:43    

excuse mais je suis dédutante
yoooooooupi.........
--------------------Configuration: HelloDialog - Win32 Debug--------------------
Linking...
HelloDialog.obj : error LNK2001: unresolved external symbol __afxForceEXCLUDE
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: void __thiscall CWinApp::OnHelp(void)" (?OnHelp@CWinApp@@IAEXXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: static struct AFX_MSGMAP const CWinApp::messageMap" (?messageMap@CWinApp@@1UAFX_MSGMAP@@B)
HelloDialog.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall std::ios_base::Init::Init(void)" (__imp_??0Init@ios_base@std@@QAE@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall std::ios_base::Init::~Init(void)" (__imp_??1Init@ios_base@std@@QAE@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall std::_Winit::_Winit(void)" (__imp_??0_Winit@std@@QAE@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall std::_Winit::~_Winit(void)" (__imp_??1_Winit@std@@QAE@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::WinHelpA(unsigned long,unsigned int)" (?WinHelpA@CWinApp@@UAEXKI@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::OnDDECommand(char *)" (?OnDDECommand@CWinApp@@UAEHPAD@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::DoWaitCursor(int)" (?DoWaitCursor@CWinApp@@UAEXH@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::DoMessageBox(char const *,unsigned int,unsigned int)" (?DoMessageBox@CWinApp@@UAEHPBDII@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::SaveAllModified(void)" (?SaveAllModified@CWinApp@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::InitApplication(void)" (?InitApplication@CWinApp@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::AddToRecentFileList(char const *)" (?AddToRecentFileList@CWinApp@@UAEXPBD@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual class CDocument * __thiscall CWinApp::OpenDocumentFile(char const *)" (?OpenDocumentFile@CWinApp@@UAEPAVCDocument@@PBD@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinThread::Delete(void)" (?Delete@CWinThread@@UAEXXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual class CWnd * __thiscall CWinThread::GetMainWnd(void)" (?GetMainWnd@CWinThread@@UAEPAVCWnd@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::ProcessMessageFilter(int,struct tagMSG *)" (?ProcessMessageFilter@CWinThread@@UAEHHPAUtagMSG@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CWinApp::ProcessWndProcException(class CException *,struct tagMSG const *)" (?ProcessWndProcException@CWinApp@@UAEJPAVCException@@PBUtagMSG@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::ExitInstance(void)" (?ExitInstance@CWinApp@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::IsIdleMessage(struct tagMSG *)" (?IsIdleMessage@CWinThread@@UAEHPAUtagMSG@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::OnIdle(long)" (?OnIdle@CWinApp@@UAEHJ@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::PumpMessage(void)" (?PumpMessage@CWinThread@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinThread::PreTranslateMessage(struct tagMSG *)" (?PreTranslateMessage@CWinThread@@UAEHPAUtagMSG@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CWinApp::Run(void)" (?Run@CWinApp@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual struct IConnectionPoint * __thiscall CCmdTarget::GetConnectionHook(struct _GUID const & )" (?GetConnectionHook@CCmdTarget@@MAEPAUIConnectionPoint@@ABU_GUID@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual int __thiscall CCmdTarget::GetExtraConnectionPoints(class CPtrArray *)" (?GetExtraConnectionPoints@CCmdTarget@@MAEHPAVCPtrArray@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual struct IUnknown * __thiscall CCmdTarget::GetInterfaceHook(void const *)" (?GetInterfaceHook@CCmdTarget@@UAEPAUIUnknown@@PBX@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::OnCreateAggregates(void)" (?OnCreateAggregates@CCmdTarget@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_EVENTSINKMAP const * __thiscall CCmdTarget::GetEventSinkMap(void)const " (?GetEventSinkMap@CCmdTarget@@MBEPBUAFX_EVENTSINKMAP@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_INTERFACEMAP const * __thiscall CCmdTarget::GetInterfaceMap(void)const " (?GetInterfaceMap@CCmdTarget@@MBEPBUAFX_INTERFACEMAP@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_CONNECTIONMAP const * __thiscall CCmdTarget::GetConnectionMap(void)const " (?GetConnectionMap@CCmdTarget@@MBEPBUAFX_CONNECTIONMAP@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_DISPMAP const * __thiscall CCmdTarget::GetDispatchMap(void)const " (?GetDispatchMap@CCmdTarget@@MBEPBUAFX_DISPMAP@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: virtual struct AFX_OLECMDMAP const * __thiscall CCmdTarget::GetCommandMap(void)const " (?GetCommandMap@CCmdTarget@@MBEPBUAFX_OLECMDMAP@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual long __thiscall CCmdTarget::GetTypeLib(unsigned long,struct ITypeLib * *)" (?GetTypeLib@CCmdTarget@@UAEJKPAPAUITypeLib@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual class CTypeLibCache * __thiscall CCmdTarget::GetTypeLibCache(void)" (?GetTypeLibCache@CCmdTarget@@UAEPAVCTypeLibCache@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual unsigned int __thiscall CCmdTarget::GetTypeInfoCount(void)" (?GetTypeInfoCount@CCmdTarget@@UAEIXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::GetDispatchIID(struct _GUID *)" (?GetDispatchIID@CCmdTarget@@UAEHPAU_GUID@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::IsInvokeAllowed(long)" (?IsInvokeAllowed@CCmdTarget@@UAEHJ@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CCmdTarget::OnFinalRelease(void)" (?OnFinalRelease@CCmdTarget@@UAEXXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CCmdTarget::OnCmdMsg(unsigned int,int,void *,struct AFX_CMDHANDLERINFO *)" (?OnCmdMsg@CCmdTarget@@UAEHIHPAXPAUAFX_CMDHANDLERINFO@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::Dump(class CDumpContext & )const " (?Dump@CWinApp@@UBEXAAVCDumpContext@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CWinApp::AssertValid(void)const " (?AssertValid@CWinApp@@UBEXXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual void __thiscall CObject::Serialize(class CArchive & )" (?Serialize@CObject@@UAEXAAVCArchive@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual struct CRuntimeClass * __thiscall CWinApp::GetRuntimeClass(void)const " (?GetRuntimeClass@CWinApp@@UBEPAUCRuntimeClass@@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: __thiscall CWinApp::CWinApp(char const *)" (??0CWinApp@@QAE@PBD@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: static void __stdcall CObject::operator delete(void *)" (??3CObject@@SGXPAX@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CWinApp::~CWinApp(void)" (??1CWinApp@@UAE@XZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall CDialog::DoModal(void)" (?DoModal@CDialog@@UAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: __thiscall CHelloDialogDlg::CHelloDialogDlg(class CWnd *)" (??0CHelloDialogDlg@@QAE@PAVCWnd@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "protected: int __thiscall CWinApp::Enable3dControlsStatic(void)" (?Enable3dControlsStatic@CWinApp@@IAEHXZ)
HelloDialog.obj : error LNK2001: unresolved external symbol "void __cdecl AfxEnableControlContainer(class COccManager *)" (?AfxEnableControlContainer@@YAXPAVCOccManager@@@Z)
HelloDialog.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CDialog::~CDialog(void)" (??1CDialog@@UAE@XZ)
MSVCRTD.LIB(crtexe.obj) : error LNK2001: unresolved external symbol _main
Debug/HelloDialog.exe : fatal error LNK1120: 54 unresolved externals
Error executing link.exe.
 
HelloDialog.exe - 55 error(s), 0 warning(s)

Reply

Marsh Posté le 28-07-2005 à 14:32:55    

Tu as fait quoi exactement? Tu as coché "Ignore default libraries" ou quoi?
Le plus simple serait de refaire un projet MFC AppWizard puis d'y mettre tes sources. Ensuite tu contrôles l'état de "Code génération", c'est pas sorcier.

Reply

Marsh Posté le 28-07-2005 à 14:38:04    

d_imane a écrit :

il m'affiche
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/ListBoxMenu.exe : fatal error LNK1120: 1 unresolved externals


Je ne l'avais pas relevée celle-là...
Tu n'a pas écrit une main quand même?
En MFC, c'est CWinApp::InitInstance qui sert de point d'entrée.

Reply

Marsh Posté le 28-07-2005 à 14:49:15    

j'ai tt vérifier c bon ca compile ca execute tres bien,oooooooor, je ferme le programme , j'ouvre une autre ,je compile j'execute fois et voila les erreurs du depart:
-------Configuration: HelloDialog - Win32 Debug-------------  
Linking...  
HelloDialog.obj : error LNK2001: unresolved external symbol "public: __thiscall CHelloDialogDlg::CHelloDialogDlg(class CWnd *)" (??0CHelloDialogDlg@@QAE@PAVCWnd@@@Z)  
nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadex  
nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __beginthreadex  
libcd.lib(crt0.obj) : error LNK2001: unresolved external symbol _main  
Debug/HelloDialog.exe : fatal error LNK1120: 4 unresolved externals  
Error executing link.exe.  
 
HelloDialog.exe - 5 error(s), 0 warning(s)  
 
puis je verifie une autre fois le use run time op il passe à  debug Single Thread, je modifie puis j'execute et voila les erreurs:
--------------------Configuration: hello - Win32 Debug--------------------
Linking...
hello.obj : error LNK2001: unresolved external symbol "public: __thiscall CHelloDlg::CHelloDlg(class CWnd *)" (??0CHelloDlg@@QAE@PAVCWnd@@@Z)
msvcrtd.lib(crtexe.obj) : error LNK2001: unresolved external symbol _main
Debug/hello.exe : fatal error LNK1120: 2 unresolved externals
Error executing link.exe.
 
hello.exe - 3 error(s), 0 warning(s)
 
merci pour ta compréhension

Reply

Marsh Posté le 28-07-2005 à 14:51:32    

" Je ne l'avais pas relevée celle-là...  
Tu n'a pas écrit une main quand même?  
En MFC, c'est CWinApp::InitInstance qui sert de point d'entrée."
vous pouver me donez un exemple please!!

Reply

Marsh Posté le 28-07-2005 à 15:03:34    

Heu ils seraient pas en lecture seule tes fichiers sources (projet aussi) par hasard?

Reply

Marsh Posté le 28-07-2005 à 15:05:41    

j'ai pas compris ta remarque slash33???

Reply

Marsh Posté le 28-07-2005 à 15:08:00    

Bon alors juste une mise au point: as tu des connaissances en informatique (hors programmation)?

Reply

Marsh Posté le 28-07-2005 à 15:10:00    

ben oui..

Reply

Marsh Posté le 28-07-2005 à 15:14:09    

Bon alors je reprend: tes fichiers sources .cpp, .h, .dsw et .dsp sont dans un répertoire. Il est possible, au vu des symptômes que tu décris que le fichier .dsp de ton projet soit en lecture seule. Vérifie en faisant "Propriétés" sur le fichier par l'explorateur Windows. Si la case "lecture seule" est cochée, ne cherche pas plus loin l'origine de tes problèmes.


Message édité par slash33 le 28-07-2005 à 15:14:36
Reply

Marsh Posté le 28-07-2005 à 15:17:09    

no il n'est pas en lecture seule

Reply

Marsh Posté le 28-07-2005 à 15:18:02    

fais un rebuild all de ton projet


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 28-07-2005 à 15:19:31    

les memes erreurs avec un rebuild all

Reply

Marsh Posté le 28-07-2005 à 15:21:11    

Tu n'aurais pas plusieurs exemplaires du même projet sur ton disque?

Reply

Marsh Posté le 28-07-2005 à 15:22:09    

no c'est sur que non

Reply

Marsh Posté le 28-07-2005 à 15:24:46    

Bon là je commence à sécher...
Tu ne voudrais pas que je te fasse un projet qui marche par hasard?

Reply

Marsh Posté le 28-07-2005 à 15:29:02    

bon, uploade ton projet sur un ftp qu'on le regarde, parce que là y'a un truc que tu dois pas nous dire


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 28-07-2005 à 15:30:32    

Oui d'accord avec Harkonnen. Jamais vu un projet aussi simple ne pas fonctionner.

Reply

Marsh Posté le 28-07-2005 à 15:34:35    

et si vous me proposez un site ftp???

Reply

Marsh Posté le 28-07-2005 à 15:37:10    

Bien demande à Harko moi je peux rien pour toi pour le FTP.
Sinon j'accepte que tu me passes ton mail en MP.

Reply

Marsh Posté le 28-07-2005 à 15:39:39    

ok je vous donne l'exemple http://pomelo.ivia.es/mecanizacion [...] lloSDI.zip
c pareil pour tous les exemples en MFC les memes ereurs

Reply

Marsh Posté le 28-07-2005 à 15:41:07    

oui je veux bien vous passer mon e-mail, mais ca veux dire quoi en MP?

Reply

Marsh Posté le 28-07-2005 à 15:41:19    

Reçu. Je regarde ça...
 
En Message Privé. Tu y accèdes par l'enveloppe dans le barre d'outil située au dessus de mon message. Tu es nouvelle sur le forum?


Message édité par slash33 le 28-07-2005 à 15:44:05
Reply

Marsh Posté le 28-07-2005 à 15:42:17    

bonne lecture!!

Reply

Marsh Posté le 28-07-2005 à 15:42:58    

oui un peu

Reply

Marsh Posté le 28-07-2005 à 15:44:58    

ton projet marche très bien sous VS 2003


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 28-07-2005 à 15:45:30    


 1- il y a un probleme avec les librairies .
 
 2- elle n'a pas bien inclut les fichiers d'entetes .
 
 3- une mal configuration du compilateur .

Reply

Marsh Posté le    

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed