fsp_ldr.h 365 B

1234567891011121314151617
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/service.h"
  6. namespace Service::FileSystem {
  7. class FSP_LDR final : public ServiceFramework<FSP_LDR> {
  8. public:
  9. explicit FSP_LDR();
  10. ~FSP_LDR() override;
  11. };
  12. } // namespace Service::FileSystem