1 /* 2 * Copyright (C) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef CORE_OS_WINDOWS_LIBRARY_WINDOWS_H 17 #define CORE_OS_WINDOWS_LIBRARY_WINDOWS_H 18 19 20 #include <core/namespace.h> 21 22 #include "os/intf_library.h" 23 24 using HINSTANCE = struct HINSTANCE__*; 25 using HMODULE = HINSTANCE; 26 CORE_BEGIN_NAMESPACE()27CORE_BEGIN_NAMESPACE() 28 class LibraryWindows final : public ILibrary { 29 public: 30 explicit LibraryWindows(const BASE_NS::string_view filename); 31 ~LibraryWindows() override; 32 33 IPlugin* GetPlugin() const override; 34 35 protected: 36 void Destroy() override; 37 38 private: 39 HMODULE libraryHandle_ { nullptr }; 40 }; 41 CORE_END_NAMESPACE() 42 43 44 #endif // CORE_OS_WINDOWS_LIBRARY_WINDOWS_H 45