this repo has no description
at fixPythonPipStalling 64 lines 2.2 kB view raw
1/* 2 This file is part of Darling. 3 4 Copyright (C) 2019 Lubos Dolezel 5 6 Darling is free software: you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation, either version 3 of the License, or 9 (at your option) any later version. 10 11 Darling is distributed in the hope that it will be useful, 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18*/ 19 20 21#ifndef _system_dnssd_H_ 22#define _system_dnssd_H_ 23 24void* DNSServiceAddRecord(void); 25void* DNSServiceBrowse(void); 26void* DNSServiceBrowserCreate(void); 27void* DNSServiceConstructFullName(void); 28void* DNSServiceCreateConnection(void); 29void* DNSServiceCreateDelegateConnection(void); 30void* DNSServiceDiscoveryDeallocate(void); 31void* DNSServiceDiscoveryMachPort(void); 32void* DNSServiceDiscovery_handleReply(void); 33void* DNSServiceEnumerateDomains(void); 34void* DNSServiceGetAddrInfo(void); 35void* DNSServiceGetPID(void); 36void* DNSServiceGetProperty(void); 37void* DNSServiceNATPortMappingCreate(void); 38void* DNSServiceProcessResult(void); 39void* DNSServiceQueryRecord(void); 40void* DNSServiceReconfirmRecord(void); 41void* DNSServiceRefDeallocate(void); 42void* DNSServiceRefSockFD(void); 43void* DNSServiceRegister(void); 44void* DNSServiceRegisterRecord(void); 45void* DNSServiceRemoveRecord(void); 46void* DNSServiceResolve(void); 47void* DNSServiceResolverResolve(void); 48void* DNSServiceSetDefaultDomainForUser(void); 49void* DNSServiceSetDispatchQueue(void); 50void* DNSServiceSleepKeepalive(void); 51void* DNSServiceUpdateRecord(void); 52void* PeerConnectionRelease(void); 53void* TXTRecordContainsKey(void); 54void* TXTRecordCreate(void); 55void* TXTRecordDeallocate(void); 56void* TXTRecordGetBytesPtr(void); 57void* TXTRecordGetCount(void); 58void* TXTRecordGetItemAtIndex(void); 59void* TXTRecordGetLength(void); 60void* TXTRecordGetValuePtr(void); 61void* TXTRecordRemoveValue(void); 62void* TXTRecordSetValue(void); 63 64#endif