Mercurial > libanimone
view include/animone/util/win32.h @ 30:a76e55e098d1
util: rewrite functions in C-ish
there are C++ bindings still put in place. the code should be valid
C, except for the use of <regex>, which ought to go anyway. eventually
I'll actually *test* this stuff aside from the TrimRight crap
author | Paper <paper@tflc.us> |
---|---|
date | Sun, 09 Feb 2025 23:18:57 -0500 |
parents | 60ded877339b |
children |
line wrap: on
line source
#ifndef ANIMONE_ANIMONE_UTIL_WIN32_H_ #define ANIMONE_ANIMONE_UTIL_WIN32_H_ #include <windef.h> #include <subauth.h> #include <handleapi.h> #include <memory> #include <string> namespace animone::internal::win32 { struct HandleDeconstructor { using pointer = HANDLE; void operator()(pointer t) const { ::CloseHandle(t); }; }; using Handle = std::unique_ptr<HANDLE, HandleDeconstructor>; /* ----------------------------------------------- */ std::string ToUtf8String(const std::wstring& string); std::string ToUtf8String(const UNICODE_STRING& string); std::wstring ToWstring(const std::string& string); } // namespace animone::internal::win32 #endif // ANIMONE_ANIMONE_UTIL_WIN32_H_