28 lines
747 B
C
28 lines
747 B
C
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#include <obs-module.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
EXPORT BOOL winrt_capture_supported();
|
|
EXPORT BOOL winrt_capture_cursor_toggle_supported();
|
|
EXPORT struct winrt_capture *winrt_capture_init(BOOL cursor, HWND window,
|
|
BOOL client_area);
|
|
EXPORT void winrt_capture_free(struct winrt_capture *capture);
|
|
|
|
EXPORT void winrt_capture_show_cursor(struct winrt_capture *capture,
|
|
BOOL visible);
|
|
EXPORT void winrt_capture_render(struct winrt_capture *capture,
|
|
gs_effect_t *effect);
|
|
EXPORT uint32_t winrt_capture_width(const struct winrt_capture *capture);
|
|
EXPORT uint32_t winrt_capture_height(const struct winrt_capture *capture);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|