mirror of https://github.com/tongzx/nt5src
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
17 lines
420 B
typedef struct {
|
|
WORD pid;
|
|
WORD atom;
|
|
} PROPDATA;
|
|
typedef PROPDATA near * NPPROPDATA;
|
|
typedef PROPDATA far * PPROPDATA;
|
|
|
|
#define CPD_INIT 16
|
|
#define CPD_INCR 8
|
|
|
|
#define GPD_ERROR -1
|
|
|
|
//BUGBUG!! Maybe some of the proc, have their DS already set on entry!
|
|
BOOL _loadds InitPropData(VOID);
|
|
BOOL _loadds InsertPropAtom(WORD atom);
|
|
BOOL _loadds DeletePropAtom(WORD atom);
|
|
VOID _loadds PurgeProcessPropAtoms(VOID);
|