1
0
Fork 0

начало: начальный передают

This commit is contained in:
Arthur K. 2024-11-26 00:20:24 +03:00
commit a1c9df040a
Signed by: wzray
GPG key ID: B97F30FDC4636357
20 changed files with 11719 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#pragma once
#include <string>
#include <windows.h>
class COMWrapper {
protected:
void Raise(const HRESULT hr, const char *ctx) const;
void Release(const void *cls) const;
public:
virtual const char *classname() const = 0;
};