summaryrefslogtreecommitdiff
path: root/tests/projects/dlang/shared_library/src/interfaces.d
blob: e1a0602e8ed164786d897c99859be5e7e5398187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version(Windows) {
    import core.sys.windows.windows;
    import core.sys.windows.dll;
    mixin SimpleDllMain;
}

extern(C) int add(int a, int b) {
    return a + b;
}

extern(C) int sub(int a, int b) {
    return a - b;
}