Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

26 lines
412 B

#ifndef __UDTREFS_INCLUDED__
#define __UDTREFS_INCLUDED__
#ifndef __ISET_INCLUDED__
#include "..\include\iset.h"
#endif
class UDTRefs {
public:
UDTRefs(unsigned int cti_);
~UDTRefs();
BOOL fNoteRef(TI ti);
BOOL tiNext(TI *pti);
private:
unsigned int cti;
unsigned int ucur;
ISet isetRefs;
ISet isetProcessed;
inline unsigned int normalize(TI ti);
inline TI denormalize(unsigned int u);
};
#endif