mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
310 B
C
14 lines
310 B
C
// header.h
|
|
|
|
#ifndef HEADER_H
|
|
#define HEADER_H
|
|
|
|
DLLEXPORT void myFunction1(int a, int b, int c);
|
|
DLLEXPORT void myFunction2(int a, int b, int c);
|
|
DLLEXPORT void myFunction3(int a, int b, int c);
|
|
|
|
DLLEXPORT void myFunction5(int a, int b, int c);
|
|
void myFunction5(int a, int b, int c);
|
|
|
|
#endif // HEADER_H
|