簡體   English   中英

為iOS定義預處理器宏

[英]Define preprocessor macro for iOS

我有cpp文件作為標題鏈接到我的應用程序。 這些cpp和頭文件也與其他應用程序一起使用。 我如何為iPhone定義預處理器宏,以便在構建應用程序時將其用於ios,而將其用於其他平台。

例如:

如何定義宏,以便在與iOS連接時使用connectadd函數而不是我使用的簡單套接字連接函數使用getaddrinfo_compact。

bool SocketSender::Connect (const char *host, int port, CApiError &err)
{

errno = 0;
struct hostent *hostinfo;

//struct in6_addr ipv6addr;


hostinfo = gethostbyname(host);

struct addrinfo hints, *res, *res0;
int error,result;
const char *cause = NULL;

memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
//hints.ai_flags = AI_DEFAULT;
hints.ai_protocol = 0;
error = getaddrinfo_compat(host, boost::to_string(port).c_str(), &hints, &res0);
if (error) {
    errx(1, "%s", gai_strerror(error));
    /*NOTREACHED*/
}

getaddrinfo_compact

static int getaddrinfo_compat(
                          const char * hostname,
                          const char * servname,
                          const struct addrinfo * hints,
                          struct addrinfo ** res
                          ) {
int    err;
int    numericPort;

// If we're given a service name and it's a numeric string, set `numericPort` to that,
// otherwise it ends up as 0.

numericPort = servname != NULL ? atoi(servname) : 0;

// Call `getaddrinfo` with our input parameters.

err = getaddrinfo(hostname, servname, hints, res);

// Post-process the results of `getaddrinfo` to work around <rdar://problem/26365575>.

if ( (err == 0) && (numericPort != 0) ) {
    for (const struct addrinfo * addr = *res; addr != NULL; addr = addr->ai_next) {
        in_port_t *    portPtr;

        switch (addr->ai_family) {
            case AF_INET: {
                portPtr = &((struct sockaddr_in *) addr->ai_addr)->sin_port;
            } break;
            case AF_INET6: {
                portPtr = &((struct sockaddr_in6 *) addr->ai_addr)->sin6_port;
            } break;
            default: {
                portPtr = NULL;
            } break;
        }
        if ( (portPtr != NULL) && (*portPtr == 0) ) {
            *portPtr = htons(numericPort);  
        }  
    }  
}  
return err;  
}

你能定義像

IOSBUILD=1

在“預處理器宏”下的目標的構建設置中(為所有配置(例如,調試和發布)進行設置)。

在此處輸入圖片說明

然后在C ++代碼中,您可以檢查這是否是iOS版本:

#ifdef IOSBUILD
    // Use the compat version.
#else
    // Use the original version.
#endif

除非其他應用程序出於某種原因也決定定義IOSBUILD,否則這不會使其他應用程序感到不適。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM