914382224d
Makes it possible to specify the link dependencies and link interfaces in one command without repetition.
13 lines
105 B
C
13 lines
105 B
C
|
|
#include "depc_export.h"
|
|
|
|
#include "depA.h"
|
|
|
|
struct DEPC_EXPORT DepC
|
|
{
|
|
int foo();
|
|
|
|
DepA getA();
|
|
|
|
};
|