使用 C、C++ 检测 Windows 或 Linux [重复]
- 2024-11-07 08:55:00
- admin 原创
- 23
问题描述:
我正在编写一个跨平台程序。我希望这个程序可以在 Windows 和 Linux 下运行,因此我为这两个平台准备了两个不同的代码段。如果操作系统是 Windows,我希望运行第一个代码段;如果操作系统是 Linux,我希望运行第二个代码段。
因此我编写了以下代码,但在 Windows 和 Linux 上构建时都会出错。我该如何解决?
#ifdef __unix__ /* __unix__ is usually defined by compilers targeting Unix systems */
#define OS_Windows 0
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#elif defined(_WIN32) || defined(WIN32) /* _Win32 is usually defined by compilers targeting 32 or 64 bit Windows systems */
#define OS_Windows 1
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
#define DIV 1048576
#define WIDTH 7
#endif
int main(int argc, char *argv[])
{
if(OS_Windows)
{
MEMORYSTATUSEX statex;
statex.dwLength = sizeof (statex);
GlobalMemoryStatusEx (&statex);
_tprintf (TEXT("There is %*ld %% of memory in use.
"),
WIDTH, statex.dwMemoryLoad);
}
else if(!OS_Windows) // if OS is unix
{
char cmd[30];
int flag = 0;
FILE *fp;
char line[130];
int memTotal, memFree, memUsed;
flag=0;
memcpy (cmd,"