yolobs-studio/libobs/util/windows/win-registry.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
C
Raw Normal View History

2018-02-19 19:54:37 +00:00
/*
* Copyright (c) 2015 Hugh Bailey <obs.jim@gmail.com>
* Copyright (c) 2017 Ryan Foster <RytoEX@gmail.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#pragma once
#include <windows.h>
#include "../c99defs.h"
#ifdef __cplusplus
extern "C" {
#endif
struct reg_dword {
LSTATUS status;
2019-09-22 21:19:10 +00:00
DWORD size;
DWORD return_value;
2018-02-19 19:54:37 +00:00
};
EXPORT void get_reg_dword(HKEY hkey, LPCWSTR sub_key, LPCWSTR value_name,
2019-09-22 21:19:10 +00:00
struct reg_dword *info);
2018-02-19 19:54:37 +00:00
#ifdef __cplusplus
}
#endif