Files
mirror-processhacker/2.x/trunk/plugins/SecurityExplorer/explorer.h
T
wj32 678fa906aa fixed argument specifications
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3465 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-08-04 06:14:51 +00:00

26 lines
564 B
C

#ifndef EXPLORER_H
#define EXPLORER_H
#include <phdk.h>
#include "resource.h"
#ifndef SX_MAIN_PRIVATE
extern PPH_PLUGIN PluginInstance;
#endif
VOID SxShowExplorer();
__callback NTSTATUS SxStdGetObjectSecurity(
__out PSECURITY_DESCRIPTOR *SecurityDescriptor,
__in SECURITY_INFORMATION SecurityInformation,
__in_opt PVOID Context
);
__callback NTSTATUS SxStdSetObjectSecurity(
__in PSECURITY_DESCRIPTOR SecurityDescriptor,
__in SECURITY_INFORMATION SecurityInformation,
__in_opt PVOID Context
);
#endif