Jump to content

SYSNAMESTRUCT: Difference between revisions

From EDM2
Created page with "System name structure. == Type == PSZ SysDescriptName; PADJUNCT pAdjunctList; USHORT SysFlags; USHORT Reserved; == C Declaration Method ==..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
System name structure.
System name structure.
== Type ==
== Type ==
   PSZ          SysDescriptName;
   PSZ          SysDescriptName;
Line 5: Line 6:
   USHORT      SysFlags;
   USHORT      SysFlags;
   USHORT      Reserved;
   USHORT      Reserved;
 
 
== C Declaration Method ==
== C Declaration Method ==
  typedef struct
  typedef struct
Line 11: Line 12:
== Fields ==
== Fields ==


== Remarks ==


== Example Code ==
== Example Code ==
Line 22: Line 22:
} SYSNAMESTRUCT;
} SYSNAMESTRUCT;


typedef  SYSNAMESTRUCT   * PSYSNAMESTRUCT ;
typedef  SYSNAMESTRUCT * PSYSNAMESTRUCT;
 
</PRE>
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 21:02, 13 March 2019

System name structure.

Type

 PSZ          SysDescriptName;
 PADJUNCT     pAdjunctList;
 USHORT       SysFlags;
 USHORT       Reserved;

C Declaration Method

typedef struct

Fields

Example Code

typedef struct _SYSNAMESTRUCT {
  PSZ          SysDescriptName;
  PADJUNCT     pAdjunctList;
  USHORT       SysFlags;
  USHORT       Reserved;         /*  Reserved value. */
} SYSNAMESTRUCT;

typedef   SYSNAMESTRUCT  * PSYSNAMESTRUCT;