mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
678fa906aa
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3465 21ef857c-d57f-4fe0-8362-d861dc6d29cd
26 lines
564 B
C
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
|