mirror of https://github.com/lianthony/NT4.0
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.
34 lines
672 B
34 lines
672 B
typedef class WINLOOKRANGE * PWINLOOKRANGE;
|
|
|
|
class WINLOOKRANGE
|
|
{
|
|
private:
|
|
ULONG Start;
|
|
ULONG End;
|
|
ULONG Length;
|
|
BOOLEAN AutoSelect;
|
|
public:
|
|
WINLOOKRANGE ();
|
|
~WINLOOKRANGE();
|
|
|
|
ULONG GetStart(VOID);
|
|
ULONG GetEnd(VOID);
|
|
ULONG GetLength(VOID);
|
|
BOOL GetAutoSelect(VOID);
|
|
|
|
VOID SetStart(ULONG ul);
|
|
VOID SetEnd(ULONG ul);
|
|
VOID SetLength(ULONG ul);
|
|
|
|
VOID SetStart(WCHAR * ws);
|
|
VOID SetEnd(WCHAR * ws);
|
|
VOID SetLength(WCHAR * ws);
|
|
|
|
VOID SetAutoSelect(BOOL Auto);
|
|
|
|
|
|
BOOL GetRegLookRange(VOID);
|
|
BOOL SetRegLookRange(VOID);
|
|
};
|
|
|
|
|