1 /* 2 * Copyright 2024, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT license. 4 */ 5 6 #include <messaging.h> 7 8 9 extern "C" status_t 10 send_message(const void *message, int32 messageSize, 11 const messaging_target *targets, int32 targetCount) 12 { 13 return B_NOT_SUPPORTED; 14 } 15