RuntimeLibraryLoaderParameter.hpp 437 B

1234567891011121314151617181920212223
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-09-06
  6. * Changed: 2022-09-06
  7. *
  8. * */
  9. #ifndef LS_STD_RUNTIME_LIBRARY_LOADER_PARAMETER_HPP
  10. #define LS_STD_RUNTIME_LIBRARY_LOADER_PARAMETER_HPP
  11. #include <string>
  12. namespace ls::std::os
  13. {
  14. struct RuntimeLibraryLoaderParameter
  15. {
  16. ::std::string path{};
  17. };
  18. }
  19. #endif