mirror of
https://gitea.tendokyu.moe/TeamTofuShop/capnhook.git
synced 2026-09-22 22:38:12 +03:00
11 lines
199 B
C
11 lines
199 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#define hr_propagate_win32(hr, r) (hr_propagate_win32_(hr), r)
|
|
|
|
uint32_t hr_to_win32_error(HRESULT hr);
|
|
void hr_propagate_win32_(HRESULT hr);
|