docs

Home All functions Legacy functions Categories

vuPOP3SetServer()

Clarion prototype

Prototype: vuPOP3SetServer(*CSTRING InServer), SIGNED, PROC, PASCAL, RAW, NAME(‘vuPOP3SetServer’)

Description

Sets the POP3 server name used by vuMailKit POP3 receive operations.

Parameters

Parameter Data Type Description
InServer *CSTRING The value to store.

Return value

Returns 0 (this function always returns 0).

Example (Clarion)

ROUTINE:Example   ROUTINE
  DATA
RC      LONG
Value   LONG

  CODE
  Value = 'example'
  RC = vuPOP3SetServer(Value)
  STOP('RC=' & RC)
Home All functions Legacy functions Categories