mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 22:30:13 -06:00
This is typically how projects include them, and cl's `-external:{I,W}`
flags suppress warnings only when included through angle brackets.
13 lines
133 B
C
13 lines
133 B
C
|
|
#ifndef UPSTREAM_H
|
|
#define UPSTREAM_H
|
|
|
|
#include <systemlib.h>
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int upstream();
|
|
|
|
#endif
|