The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
PARAMFLAG Enumeration
.NET Framework 1.1
Describes how to transfer a structure element, parameter, or function return value between processes.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> <ComVisible(False)> Public Enum PARAMFLAG [C#] [Flags] [Serializable] [ComVisible(false)] public enum PARAMFLAG [C++] [Flags] [Serializable] [ComVisible(false)] __value public enum PARAMFLAG [JScript] public Flags Serializable ComVisible(false) enum PARAMFLAG
Members
| Member name | Description | Value |
|---|---|---|
| PARAMFLAG_FHASCUSTDATA | The parameter has custom data. | 64 |
| PARAMFLAG_FHASDEFAULT | The parameter has default behaviors defined. | 32 |
| PARAMFLAG_FIN | The parameter passes information from the caller to the callee. | 1 |
| PARAMFLAG_FLCID | The parameter is the local identifier of a client application. | 4 |
| PARAMFLAG_FOPT | The parameter is optional. | 16 |
| PARAMFLAG_FOUT | The parameter returns information from the callee to the caller. | 2 |
| PARAMFLAG_FRETVAL | The parameter is the return value of the member. | 8 |
| PARAMFLAG_NONE | Whether the parameter passes or receives information is unspecified. | 0 |
Requirements
Namespace: System.Runtime.InteropServices
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: