File: device-enum.h

package info (click to toggle)
obs-studio 30.2.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 47,852 kB
  • sloc: ansic: 202,137; cpp: 112,402; makefile: 868; python: 599; sh: 275; javascript: 19
file content (14 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "../c99defs.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef bool (*device_luid_cb)(void *param, uint32_t idx, uint64_t luid);
EXPORT void enum_graphics_device_luids(device_luid_cb device_luid, void *param);

#ifdef __cplusplus
}
#endif