How to make library in Dynamic C 8.10

I do this:

  1. I Make simple function, then i save as “test.lib” in library folder.

  2. I Make simple program. I define this library in beginning program.
    i use “#use test.lib” syntax.

  3. In main sub, i call function from test library, but the program still error.
    Function in from test.lib still unknown in program.

Anyone can help me?

While writing the library it should be as per the syntax of Dynamic C,

/*** BeginHeader */


/*** EndHeader */ etc.

(please refer to “Modules” section in User’s manual.)

Also the path of the library should be mentioned in LIB.DIR

Hope this helps.

Thank’s for your information