GetApplicationEventTarget() private method

private GetApplicationEventTarget ( ) : IntPtr
return System.IntPtr
Exemplo n.º 1
0
        internal static void InstallApplicationEventHandler(IntPtr uppHandlerProc, EventTypeSpec[] eventTypes, IntPtr userData, IntPtr handlerRef)
        {
            OSStatus errorCode = API._InstallEventHandler(API.GetApplicationEventTarget(), uppHandlerProc, eventTypes.Length, eventTypes, userData, handlerRef);

            if (errorCode != OSStatus.NoError)
            {
                throw new MacOSException(errorCode);
            }
        }