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.
32 lines
622 B
32 lines
622 B
////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Header : nshpa.h
|
|
//
|
|
// Purpose : Policy agent related services.
|
|
//
|
|
// Developers Name : Bharat/Radhika
|
|
//
|
|
// History :
|
|
//
|
|
// Date Author Comments
|
|
// 9-8-2001 Bharat Initial Version. V1.0
|
|
//
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _NSHPA_H_
|
|
#define _NSHPA_H_
|
|
|
|
|
|
// const defs
|
|
const _TCHAR szPolAgent[] = _TEXT("policyagent");
|
|
|
|
//
|
|
//Chacks for policyagent runnning or not.
|
|
//
|
|
BOOL
|
|
PAIsRunning(
|
|
OUT DWORD &dwReturn,
|
|
IN LPTSTR szServ = NULL
|
|
);
|
|
|
|
#endif
|