mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-28 08:31:52 +08:00
13 lines
310 B
C
13 lines
310 B
C
#ifndef FFI_H
|
|
#define FFI_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void *dxgi_new_capturer(int64_t luid);
|
|
void *dxgi_device(void *capturer);
|
|
int dxgi_width(const void *capturer);
|
|
int dxgi_height(const void *capturer);
|
|
void *dxgi_capture(void *capturer, int wait_ms);
|
|
void destroy_dxgi_capturer(void *capturer);
|
|
|
|
#endif // FFI_H
|