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.
56 lines
532 B
56 lines
532 B
/*
|
|
* Pts.h
|
|
*
|
|
* Author: BreenH
|
|
*
|
|
* A dummy policy for Personal TS.
|
|
*/
|
|
|
|
#ifndef __LC_PTS_H__
|
|
#define __LC_PTS_H__
|
|
|
|
/*
|
|
* Includes
|
|
*/
|
|
|
|
#include "policy.h"
|
|
|
|
/*
|
|
* Class Definition
|
|
*/
|
|
|
|
class CPtsPolicy : public CPolicy
|
|
{
|
|
public:
|
|
|
|
/*
|
|
* Creation Functions
|
|
*/
|
|
|
|
CPtsPolicy(
|
|
);
|
|
|
|
~CPtsPolicy(
|
|
);
|
|
|
|
/*
|
|
* Administrative Functions
|
|
*/
|
|
|
|
ULONG
|
|
GetFlags(
|
|
);
|
|
|
|
ULONG
|
|
GetId(
|
|
);
|
|
|
|
NTSTATUS
|
|
GetInformation(
|
|
LPLCPOLICYINFOGENERIC lpPolicyInfo
|
|
);
|
|
|
|
};
|
|
|
|
#endif
|
|
|