1 /* 2 * Copyright 2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Copyright 2023, Haiku, Inc. 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef SUPPORTING_APPS_MENU_H 7 #define SUPPORTING_APPS_MENU_H 8 9 10 #include <SupportDefs.h> 11 12 class BHandler; 13 class BMenu; 14 class BMimeType; 15 16 extern const char* kApplicationSignature; 17 18 void update_supporting_apps_menu(BMenu* menu, BMimeType* type, uint32 what, BHandler* target); 19 20 #endif // SUPPORTING_APPS_MENU_H 21