j***@gmail.com
2008-09-22 06:46:45 UTC
Hi all.
I have a probelm when use BCB6 when create static library file. is it
possible to use static library function inside static library project
in bcb6 ?
example:
1. I have test function inside a.lib
int test()
{
return 10;
}
2. In another project. i create b.lib and use test function in a.lib
void test2()
{
test();
}
but when i call test2 in application project. it return error
'unresolved external test()'.
void main()
{
test2();
}
can you help me to solved this problem? thank you
I have a probelm when use BCB6 when create static library file. is it
possible to use static library function inside static library project
in bcb6 ?
example:
1. I have test function inside a.lib
int test()
{
return 10;
}
2. In another project. i create b.lib and use test function in a.lib
void test2()
{
test();
}
but when i call test2 in application project. it return error
'unresolved external test()'.
void main()
{
test2();
}
can you help me to solved this problem? thank you