1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4
5#include <platformdefines.h>
6
7extern "C"
8{
9DLL_EXPORT int GetInt32Const() {return 7;}
10DLL_EXPORT __int64 GetInt64Const() {return 7;}
11DLL_EXPORT float GetFloatConst() {return 7.777777f;}
12DLL_EXPORT double GetDoubleConst() {return 7.777777;}
13}
14