blob: 6b1d9d952eb1de5fbfc70f7aaed13d0cde7c9908 (
plain)
| 1
2
3
4
5
6
7
8
9
 | with Windows_Default_Path;
pragma Elaborate_All (Windows_Default_Path);
package Default_Paths is
   Install_Prefix : constant String :=
     Windows_Default_Path.Get_Windows_Exec_Path;
   Lib_Prefix : constant String := "lib";
   Shared_Library_Extension : constant String := ".dll";
end Default_Paths;
 |