summaryrefslogtreecommitdiff
path: root/src/pal/src/include/pal/modulename.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/include/pal/modulename.h')
-rw-r--r--src/pal/src/include/pal/modulename.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/pal/src/include/pal/modulename.h b/src/pal/src/include/pal/modulename.h
new file mode 100644
index 0000000000..70b0a610dc
--- /dev/null
+++ b/src/pal/src/include/pal/modulename.h
@@ -0,0 +1,39 @@
+// 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.
+
+/*++
+
+
+
+Module Name:
+
+ include/pal/modulename.h
+
+Abstract:
+ Header file for functions to get the name of a module
+
+Revision History:
+
+
+
+--*/
+
+#ifndef _PAL_MODULENAME_H_
+#define _PAL_MODULENAME_H_
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif // __cplusplus
+
+const char *PAL_dladdr(LPVOID ProcAddress);
+#if defined(_AIX)
+int GetLibRotorNameViaLoadQuery(LPSTR pszBuf);
+#endif
+
+#ifdef __cplusplus
+}
+#endif // __cplusplus
+
+#endif /*_PAL_MODULENAME_H_*/