using open source library
-
Im using borZoi to implement ECC in my project Ive uncluded all the header files and other things according to its manual but when i call its functions i get undeclared function errors. I call use_NIST_B_163 (); and get error e:\vc\myprojects\project\malloc1\dsprojdlg.cpp(212) : error C2065: 'use_NIST_B_163' : undeclared identifier
-
Im using borZoi to implement ECC in my project Ive uncluded all the header files and other things according to its manual but when i call its functions i get undeclared function errors. I call use_NIST_B_163 (); and get error e:\vc\myprojects\project\malloc1\dsprojdlg.cpp(212) : error C2065: 'use_NIST_B_163' : undeclared identifier
Have you included the headers file directory into your settings (include path)? And the library?? Is it linked/added into the Link tab > Object library modules? Marc Soleda. ... she said you are the perfect stranger she said baby let's keep it like this... Tunnel of Love, Dire Straits.
-
Im using borZoi to implement ECC in my project Ive uncluded all the header files and other things according to its manual but when i call its functions i get undeclared function errors. I call use_NIST_B_163 (); and get error e:\vc\myprojects\project\malloc1\dsprojdlg.cpp(212) : error C2065: 'use_NIST_B_163' : undeclared identifier
I don't know anything about that library, but the manual says you must define USE_MPI. Did you define it? Are you sure dsprojdlg.cpp has an include for borzoi.h and nist_curves.h? -- jlr http://jlamas.blogspot.com/[^]
-
I don't know anything about that library, but the manual says you must define USE_MPI. Did you define it? Are you sure dsprojdlg.cpp has an include for borzoi.h and nist_curves.h? -- jlr http://jlamas.blogspot.com/[^]
// DSProjDlg.cpp : implementation file // #include "borzoi.h" #include "nist_curves.h" #include "stdafx.h" #include "DSProj.h" #include "NewDlg.h" #include "SignDlg.h" #include "DSProjDlg.h" Yup Ive included the files and Ive included the USE_MPI in Project->settings->C/C++ ->prepocessor->preprocessor definitions Is it OK?
-
// DSProjDlg.cpp : implementation file // #include "borzoi.h" #include "nist_curves.h" #include "stdafx.h" #include "DSProj.h" #include "NewDlg.h" #include "SignDlg.h" #include "DSProjDlg.h" Yup Ive included the files and Ive included the USE_MPI in Project->settings->C/C++ ->prepocessor->preprocessor definitions Is it OK?
titi@yahoo.com wrote: Is it OK? No. Since you are most likely using precompiled headers through stdafx.h, the compiler ignores anything before the include for stdafx.h. Move the includes for borzoi.h and nist_curves.h below the include for stdafx.h and try again. -- jlr http://jlamas.blogspot.com/[^]