附 install.c
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <unistd.h>
#include <windows.h>
#ifndef _WIN64
// 退出进程,若在 64 位系统上运行的话
void EXIT_IF_WOW64()
{
typedef BOOL (WINAPI *is_wow64_type)(HANDLE, PBOOL);
is_wow64_type is_wow64;
BOOL wow64 = FALSE;
is_wow64 = (is_wow64_type)GetProcAddress(
GetModuleHandle(TEXT("kernel32")),
"IsWow64Process"
);
if(is_wow64 != NULL)
is_wow64(GetCurrentProcess(), &wow64);
if(wow64) {