means that .fp files are some kind of indispensable interface to functions in .lib ? I created that file, but there where a problem too, Don't remember - surely Labwindows throw some internal error and crushed.
Should the correct way to create and use .lib look like this : ?
1. Create new workspace, some controls on .uir, some functions in main .c file
2. Change Target to - Static Library
3. Compile Library
4. Create new workspace, .prj (where we want to use the library), .uir.
5. Add to project .lib and .h (of library)
6. add #include "nameoflibrary.h" to .prj
7. Now I want to recall function from library (but there's missing it's prototype I added the prototype to .h file but don't work (by the way in this file is info, that I shouldn't do that) )
8. If I want to loadpanel I just use Loadpanel(paneloflibrary.uir) ?
9. If I want interface to library for programmers I can create it ( .fp). If I don't want interface for programmers I need to create it too, but with no classes (only instrument)
Where I'm wrong ?