You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Visual C++ Lovers
I have the following system (this is a simplified version):
void foo(int i)
{
if (i > 0)
bar(i - 1);
}
void bar(int i)
{
if (i > 0)
foo(i - 1);
}
int main()
{
foo(10);
}
Now I want foo and bar in a separate dll (foo.dll and bar.dll). Both
should be loaded by a main.exe. I cannot configure my project in such
a way that it compiles this in one go. I can create both dll's and the
executable by changing the dependencies and doing multiple compilation
runs.