docs

Home All functions Legacy functions Categories

vuPOP3SetServer()

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.

Returns

Returns 0 (this function always returns 0).

Example

ROUTINE:Example   ROUTINE
  DATA
RC      LONG
Value   LONG

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