summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/test1/testlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/test1/testlib.c')
-rw-r--r--src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/test1/testlib.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/test1/testlib.c b/src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/test1/testlib.c
new file mode 100644
index 0000000000..e8fe48e05d
--- /dev/null
+++ b/src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/test1/testlib.c
@@ -0,0 +1,33 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*=============================================================================
+**
+** Source: testlib.c (filemapping_memmgt\getprocaddress\test1)
+**
+** Purpose: Create a simple library containing one function
+** to test GetProcAddress
+**
+**
+**===========================================================================*/
+#include "pal.h"
+
+#if WIN32
+__declspec(dllexport)
+#endif
+
+/**
+ * Simple function that returns i+1
+ */
+int __stdcall SimpleFunction(int i)
+{
+ return i+1;
+}
+
+#if WIN32
+int __stdcall _DllMainCRTStartup(void *hinstDLL, int reason, void *lpvReserved)
+{
+ return 1;
+}
+#endif