header - Working with .h and .lib files in c++ -
i have problem, have few header.h files , 1 library.lib file , nothing more. possible execute functions header files in new project?
thanks answers :)
"is possible execute functions header files in new project?"
yes it's possible. you'll need put #include "xxx.h"
statements, need function declarations call them, , link executable .lib
file.
Comments
Post a Comment