This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to generate .H file from the .lib file ?

How to generate .H file from the .lib file ? i have created .lib file and i have the .c file for the .lib file itself.

Parents
  • You can't generate a header file from a library file.

    The person who did write the C file should also have written a header file listing all functionality the C file exports. It's part of standard C coding to create corresponding header files when code is split between multiple C files - so if you have the C file then you, yourself, should be able to create a header file if you do know how to code in C.

Reply
  • You can't generate a header file from a library file.

    The person who did write the C file should also have written a header file listing all functionality the C file exports. It's part of standard C coding to create corresponding header files when code is split between multiple C files - so if you have the C file then you, yourself, should be able to create a header file if you do know how to code in C.

Children