示例#1
0
 [SuppressUnmanagedCodeSecurityAttribute]        // Don't do security checks 
 internal static int EventSetInformation(
     [In] long registrationHandle,
     [In] EVENT_INFO_CLASS informationClass,
     [In] void* eventInformation,
     [In] int informationLength)
 {
     return Interop.Kernel32.EventSetInformation((ulong)registrationHandle, (int)informationClass, (IntPtr)eventInformation, informationLength);
 }
 internal static extern int EventSetInformation(
     [In] long registrationHandle,
     [In] EVENT_INFO_CLASS informationClass,
     [In] void *eventInformation,
     [In] int informationLength);
 internal static unsafe extern int EventSetInformation(
     long registrationHandle,
     EVENT_INFO_CLASS informationClass,
     void *eventInformation,
     int informationLength);
示例#4
0
 internal extern static uint EventSetInformation(ulong registrationHandle, EVENT_INFO_CLASS informationClass, IntPtr eventInformation, uint informationLength);