mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 14:11:33 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
21
CPP/Windows/Defs.h
Executable file
21
CPP/Windows/Defs.h
Executable file
@@ -0,0 +1,21 @@
|
||||
// Windows/Defs.h
|
||||
|
||||
#ifndef __WINDOWS_DEFS_H
|
||||
#define __WINDOWS_DEFS_H
|
||||
|
||||
inline bool BOOLToBool(BOOL value)
|
||||
{ return (value != FALSE); }
|
||||
|
||||
inline bool LRESULTToBool(LRESULT value)
|
||||
{ return (value != FALSE); }
|
||||
|
||||
inline BOOL BoolToBOOL(bool value)
|
||||
{ return (value ? TRUE: FALSE); }
|
||||
|
||||
inline VARIANT_BOOL BoolToVARIANT_BOOL(bool value)
|
||||
{ return (value ? VARIANT_TRUE: VARIANT_FALSE); }
|
||||
|
||||
inline bool VARIANT_BOOLToBool(VARIANT_BOOL value)
|
||||
{ return (value != VARIANT_FALSE); }
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user