You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
' ========================================================================================
' Makes a boolean variant with the %VT_BOOL flag set.
' ========================================================================================
SUB MKVTBOOL (BYREF vVar AS VARIANT, BYVAL fBool AS INTEGER)
LOCAL pv AS VARIANTAPI PTR ' Pointer to a VARIANTAPI structure
vVar = EMPTY ' Make sure is empty to avoid memory leaks
pv = VARPTR(vVar) ' Get the VARIANT address
@pv.vt = %VT_BOOL ' Mark it as containing a boolean value
IF fBool THEN fBool = -1 ' Make sure is 0 or -1
@pv.vd.boolVal = fBool ' Set the boolean value
END SUB
' ========================================================================================
Don forget to include WIN32API.INC, where the VARIANTAPI structure is defined.
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment