mirror of
https://github.com/aaru-dps/Aaru.Compression.Native.git
synced 2025-12-16 19:24:31 +00:00
Move placement of lzma.
This commit is contained in:
18
3rdparty/lzma/CPP/Windows/Defs.h
vendored
Normal file
18
3rdparty/lzma/CPP/Windows/Defs.h
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
// Windows/Defs.h
|
||||
|
||||
#ifndef __WINDOWS_DEFS_H
|
||||
#define __WINDOWS_DEFS_H
|
||||
|
||||
#include "../Common/MyWindows.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
inline bool LRESULTToBool(LRESULT v) { return (v != FALSE); }
|
||||
inline BOOL BoolToBOOL(bool v) { return (v ? TRUE: FALSE); }
|
||||
#endif
|
||||
|
||||
inline bool BOOLToBool(BOOL v) { return (v != FALSE); }
|
||||
|
||||
inline VARIANT_BOOL BoolToVARIANT_BOOL(bool v) { return (v ? VARIANT_TRUE: VARIANT_FALSE); }
|
||||
inline bool VARIANT_BOOLToBool(VARIANT_BOOL v) { return (v != VARIANT_FALSE); }
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user