egg (or chicken)

Signed-off-by: Arthur Khachaturov <me@wzray.ru>
This commit is contained in:
Arthur Khachaturov 2024-11-26 00:20:24 +03:00
commit 8ed52d1c79
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
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;
};