【发布时间】:2024-11-14 06:50:02
【问题描述】:
我很受阻,因为我想将 C 代码(在 Linux 中运行)移植到 Windows,但我不知道该怎么做,代码有以下库:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "openssl/conf.h"
#include "openssl/evp.h"
#include "openssl/err.h"
#include <my_global.h>
#include <mysql.h>
#include <m_string.h>
如何将此代码移植到 Windows(在 32 和 64 中运行)?谢谢
【问题讨论】:
-
你忘了问问题。你需要什么帮助?您需要知道您可能的解决方案是什么吗?或者您需要帮助实施特定的解决方案?还是什么?
-
是的,对不起,我忘了问一个问题,下次我会这样做
标签: c linux windows sockets include