Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
388 B

  1. /* Tree Node Flags. */
  2. #define TF_LASTLEVELENTRY 0x01
  3. #define TF_HASCHILDREN 0x02
  4. #define TF_EXPANDED 0x04
  5. #define TF_DISABLED 0x08
  6. #define TF_LFN 0x10
  7. typedef struct tagDNODE
  8. {
  9. struct tagDNODE *pParent;
  10. BYTE wFlags;
  11. BYTE nLevels;
  12. INT iNetType;
  13. CHAR szName[1]; // variable length field
  14. } DNODE;
  15. typedef DNODE *PDNODE;