1*f01106c3SAxel Dörfler /* 2*f01106c3SAxel Dörfler * Copyright 2007, Haiku, Inc. All Rights Reserved. 3*f01106c3SAxel Dörfler * Distributed under the terms of the MIT License. 4*f01106c3SAxel Dörfler * 5*f01106c3SAxel Dörfler * Authors: 6*f01106c3SAxel Dörfler * Axel Dörfler, axeld@pinc-software.de 7*f01106c3SAxel Dörfler */ 8*f01106c3SAxel Dörfler #ifndef NETWORK_STATUS_H 9*f01106c3SAxel Dörfler #define NETWORK_STATUS_H 10*f01106c3SAxel Dörfler 11*f01106c3SAxel Dörfler 12*f01106c3SAxel Dörfler #include <image.h> 13*f01106c3SAxel Dörfler 14*f01106c3SAxel Dörfler 15*f01106c3SAxel Dörfler extern const char* kSignature; 16*f01106c3SAxel Dörfler extern const char* kDeskbarItemName; 17*f01106c3SAxel Dörfler 18*f01106c3SAxel Dörfler status_t our_image(image_info& image); 19*f01106c3SAxel Dörfler 20*f01106c3SAxel Dörfler #endif // NETWORK_STATUS_H 21