Freigeben über


_RetLogical( ), API-Bibliotheksroutine

Legt den Bibliotheksrückgabewert auf einen logischen Wert fest.

void _RetLogical(int flag)
int flag;                     /* Flag. */

Hinweise

_RetLogical( ) interpretiert Null als Falsch (.F.) und einen beliebigen Wert ungleich Null als Wahr (.T.).

Weitere Informationen zum Erstellen einer API-Bibliothek und ihrer Integration in Visual FoxPro finden Sie unter Zugreifen auf die Visual FoxPro-API.

Beispiel

Das folgende Beispiel stellt den Wurf einer Münze dar. Basierend auf der RAND( )- Bibliotheksfunktion wird Wahr (.T.) oder Falsch (.F.) zurückgegeben.

Visual FoxPro-Code

SET LIBRARY TO RETLOGIC
? RETLOGICAL()  && returns .T. or .F. pseudo-randomly

C-Code

#include <pro_ext.h>

FAR Example(ParamBlk FAR *parm)
{
   _RetLogical(rand() % 2);
}

FoxInfo myFoxInfo[] = {
   {"RETLOGICAL", (FPFI) Example, 0, ""},
};
FoxTable _FoxTable = {
   (FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};

Siehe auch

_RetChar( ), API-Bibliotheksroutine | _RetCurrency( ), API-Bibliotheksroutine | _RetDateStr( ), API-Bibliotheksroutine | _RetDateTimeStr( ), API-Bibliotheksroutine | _RetFloat( ), API-Bibliotheksroutine | _RetInt( ), API-Bibliotheksroutine | _RetVal( ), API-Bibliotheksroutine