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.
44 lines
873 B
44 lines
873 B
/*
|
|
* acttest.h
|
|
*/
|
|
|
|
#ifndef _CLSID_
|
|
#define _CLSID_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
|
|
extern CLSID CLSID_ActLocal;
|
|
extern CLSID CLSID_ActRemote;
|
|
extern CLSID CLSID_ActAtStorage;
|
|
extern CLSID CLSID_ActInproc;
|
|
extern CLSID CLSID_ActPreConfig;
|
|
extern CLSID CLSID_ActRunAsLoggedOn;
|
|
extern CLSID CLSID_ActService;
|
|
extern CLSID CLSID_ActServerOnly;
|
|
|
|
extern TCHAR * ClsidGoober32String;
|
|
extern TCHAR * ClsidActLocalString;
|
|
extern TCHAR * ClsidActRemoteString;
|
|
extern TCHAR * ClsidActAtStorageString;
|
|
extern TCHAR * ClsidActInprocString;
|
|
extern TCHAR * ClsidActPreConfigString;
|
|
extern TCHAR * ClsidActRunAsLoggedOnString;
|
|
extern TCHAR * ClsidActServiceString;
|
|
extern TCHAR * ClsidActServerOnlyString;
|
|
|
|
void DeleteClsidKey( TCHAR * pwszClsid );
|
|
|
|
long SetAppIDSecurity( TCHAR * pszAppID );
|
|
|
|
|
|
int AddBatchPrivilege(const TCHAR *szUser);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|