Home
last modified time | relevance | path

Searched refs:dwmapi_library_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/win/
Dwindow_capture_utils.cc46 AeroChecker::AeroChecker() : dwmapi_library_(nullptr), func_(nullptr) { in AeroChecker()
48 dwmapi_library_ = LoadLibrary(L"dwmapi.dll"); in AeroChecker()
49 if (dwmapi_library_) { in AeroChecker()
51 GetProcAddress(dwmapi_library_, "DwmIsCompositionEnabled")); in AeroChecker()
56 if (dwmapi_library_) { in ~AeroChecker()
57 FreeLibrary(dwmapi_library_); in ~AeroChecker()
Dscreen_capturer_win_gdi.cc44 dwmapi_library_(NULL), in ScreenCapturerWinGdi()
49 if (!dwmapi_library_) in ScreenCapturerWinGdi()
50 dwmapi_library_ = LoadLibrary(kDwmapiLibraryName); in ScreenCapturerWinGdi()
52 if (dwmapi_library_) { in ScreenCapturerWinGdi()
54 GetProcAddress(dwmapi_library_, "DwmEnableComposition")); in ScreenCapturerWinGdi()
69 if (dwmapi_library_) in ~ScreenCapturerWinGdi()
70 FreeLibrary(dwmapi_library_); in ~ScreenCapturerWinGdi()
Dwindow_capture_utils.h34 HMODULE dwmapi_library_;
Dscreen_capturer_win_gdi.h78 HMODULE dwmapi_library_; variable