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
420 B

  1. typedef struct {
  2. WORD pid;
  3. WORD atom;
  4. } PROPDATA;
  5. typedef PROPDATA near * NPPROPDATA;
  6. typedef PROPDATA far * PPROPDATA;
  7. #define CPD_INIT 16
  8. #define CPD_INCR 8
  9. #define GPD_ERROR -1
  10. //BUGBUG!! Maybe some of the proc, have their DS already set on entry!
  11. BOOL _loadds InitPropData(VOID);
  12. BOOL _loadds InsertPropAtom(WORD atom);
  13. BOOL _loadds DeletePropAtom(WORD atom);
  14. VOID _loadds PurgeProcessPropAtoms(VOID);