EPNSHAREPOINTOPTIONS

typedef struct tag_EPNSHAREPOINTOPTIONS
{
   L_UINT uStructSize;
   L_CHAR szServerName[MAX_PATH];
   L_CHAR szRepository[MAX_PATH];
   L_CHAR szUserName[MAX_STRING];
   L_CHAR szPassword[MAX_STRING];
   L_BOOL bSaveUserNamePass;
   L_BOOL bOverwriteFile;
} EPNSHAREPOINTOPTIONS, * pEPNSHAREPOINTOPTIONS;

The EPNSHAREPOINTOPTIONS structure provides options for file saving.

Member

Description

uStructSize

Size of this structure in bytes, for versioning. Use the sizeof() macro to calculate this value.

szServerName

Character string that contains the SharePoint server name.

szRepository

Character string that contains the repository name.

szUserName

Character string that contains the user name.

szPassword

Character string that contains the password.

bSaveUserNamePass

Flag that indicates whether to save the user settings or not. Possible values are:

 

Value

Meaning

 

TRUE

Save user settings.

 

FALSE

Don’t save user settings.

bOverwriteFile

Flag that indicates whether to overwrite the existing file or not. Possible values are:

 

Value

Meaning

 

TRUE

Overwrite existing file.

 

FALSE

Don’t overwrite existing file.

Comments

This structure is used within EPNPRINTERSAVEOPTIONS structure.