NAMEVALUE

typedef struct tagNAMEVALUE
{
   L_TCHAR *pszName;
   L_TCHAR *pszValue;
} NAMEVALUE, *pNAMEVALUE;

The NAMEVALUE structure serves as the working structure for name items on a form. When sending a form or Bitmap it allows you to specify the HTTP form element.

Member

Description

pszName

Name of a HTTP form item.

pszValue

Value of an HTTP form item.

Comments

pNAMEVALUE is a pointer to a NAMEVALUE structure. Generally, where a function parameter type is pNAMEVALUE, you can declare a NAMEVALUE variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pNAMEVALUE variable is necessary only if your program requires a pointer.

See Also

Functions:

L_InetHttpSendBitmap,L_InetHttpSendData, L_InetHttpSendForm