docs

Home All functions Legacy functions Categories

vuPOP3SetFolder()

vuPOP3SetFolder(*CSTRING InFolder),SIGNED,PROC,PASCAL,RAW,NAME('vuPOP3SetFolder')

Description

Sets the POP3 save folder used by vuMailKit POP3 receive operations.

Parameters

Parameter Data Type Description
InFolder *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 = vuPOP3SetFolder(Value)
  STOP('RC=' & RC)
Home All functions Legacy functions Categories