docs

Home All functions Legacy functions Categories

vuGetMailProxy()

Clarion prototype

Prototype: vuGetMailProxy(*CSTRING OutProxyHost, *LONG OutProxyPort), SIGNED, PROC, PASCAL, RAW, NAME(‘vuGetMailProxy’)

Description

This is the legacy vuMail function name.

Preferred function name:

This function is exported for backward compatibility and behaves identically to vuNetGetProxy().

Example (Clarion)

rc        LONG
proxyHost CSTRING(256)
proxyPort LONG

proxyHost = ''
proxyPort = 0
rc = vuGetMailProxy(proxyHost, proxyPort)

IF rc = 1
  MESSAGE('Proxy=' & CLIP(proxyHost) & '|Port=' & proxyPort)
END
Home All functions Legacy functions Categories