https://github.com/python/cpython
Raw File
Tip revision: 865714a117aca026ecd407159bc6b380a0299bb8 authored by Pablo Galindo on 17 June 2021, 10:27:08 UTC
Python 3.10.0b3
Tip revision: 865714a
MyAppDelegate.h
/* MyAppDelegate */

#import <Cocoa/Cocoa.h>

@interface MyAppDelegate : NSObject
{
    BOOL        initial_action_done;
    BOOL        should_terminate;
}
- (id)init;
- (IBAction)showPreferences:(id)sender;
- (BOOL)shouldShowUI;
- (BOOL)shouldTerminate;
- (void)testFileTypeBinding;
@end
back to top