额外减小 发表于 2023-1-15 16:00:13

小甲鱼第三课窗口的程序报错了

本帖最后由 额外减小 于 2023-1-15 16:38 编辑


如题
错误:...\AppData\Local\Temp\ccqNQ40k.o        窗口.c:(.text+0x15b): undefined reference to `__imp_GetStockObject'
错误:...\Desktop\codehome\collect2.exe        ld returned 1 exit status





全部代码↓
#include <windows.h>


LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);

LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
        HDC hdc;
        PAINTSTRUCT ps;
        RECT rect;
       
        switch(message)
        {
                case WM_PAINT:
                        hdc=BeginPaint(hwnd,&ps);
                        GetClientRect(hwnd,&rect);
                        DrawText(hdc,TEXT("hello?"),-1,&rect,DT_SINGLELINE|DT_CENTER|DT_VCENTER);
                        EndPaint(hwnd,&ps);
                        return 0;
               
                case WM_DESTROY:
                        PostQuitMessage(0);
                        return 0;
        }
       
        return DefWindowProc(hwnd,message,wParam,lParam);
}


int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,PSTR szCmdLine,int iCmdShow)
{
        static TCHAR szAppName[]=TEXT("MyWindows");
        HWND hwnd;
        MSG msg;
        WNDCLASS wndclass;
       
        wndclass.style=CS_HREDRAW|CS_VREDRAW;
        wndclass.lpfnWndProc = WndProc;
        wndclass.cbClsExtra=0;
        wndclass.cbWndExtra=0;
        wndclass.hInstance=hInstance;
        wndclass.hIcon=LoadIcon(NULL,IDI_APPLICATION);
        wndclass.hCursor=LoadCursor(NULL,IDC_ARROW);
        wndclass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);
        wndclass.lpszMenuName=NULL;
        wndclass.lpszClassName=szAppName;
       
        if(!RegisterClass(&wndclass))
        {
                MessageBox(NULL,TEXT("程序需要在windows NT 才能执行"),szAppName,MB_ICONERROR);
                return 0;
        }
       
        hwnd=CreateWindow(szAppName,
                        TEXT("fishc studio"),
                        WS_OVERLAPPEDWINDOW,
                        CW_USEDEFAULT,
                        CW_USEDEFAULT,
                        CW_USEDEFAULT,
                        CW_USEDEFAULT,
                        NULL,
                        NULL,
                        hInstance,
                        NULL);
       
        ShowWindow(hwnd,iCmdShow);
        UpdateWindow(hwnd);
       
        while(GetMessage(&msg,NULL,0,0))
        {
                TranslateMessage(&msg);
                DispatchMessage(&msg);
        }
       
        return msg.wParam;
}


人造人 发表于 2023-1-15 16:08:44

发代码

额外减小 发表于 2023-1-15 16:20:25

人造人 发表于 2023-1-15 16:08
发代码

#include <windows.h>


LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);

LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
        HDC hdc;
        PAINTSTRUCT ps;
        RECT rect;
       
        switch(message)
        {
                case WM_PAINT:
                        hdc=BeginPaint(hwnd,&ps);
                        GetClientRect(hwnd,&rect);
                        DrawText(hdc,TEXT("hello?"),-1,&rect,DT_SINGLELINE|DT_CENTER|DT_VCENTER);
                        EndPaint(hwnd,&ps);
                        return 0;
               
                case WM_DESTROY:
                        PostQuitMessage(0);
                        return 0;
        }
       
        return DefWindowProc(hwnd,message,wParam,lParam);
}


int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,PSTR szCmdLine,int iCmdShow)
{
        static TCHAR szAppName[]=TEXT("MyWindows");
        HWND hwnd;
        MSG msg;
        WNDCLASS wndclass;
       
        wndclass.style=CS_HREDRAW|CS_VREDRAW;
        wndclass.lpfnWndProc = WndProc;
        wndclass.cbClsExtra=0;
        wndclass.cbWndExtra=0;
        wndclass.hInstance=hInstance;
        wndclass.hIcon=LoadIcon(NULL,IDI_APPLICATION);
        wndclass.hCursor=LoadCursor(NULL,IDC_ARROW);
        wndclass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);
        wndclass.lpszMenuName=NULL;
        wndclass.lpszClassName=szAppName;
       
        if(!RegisterClass(&wndclass))
        {
                MessageBox(NULL,TEXT("程序需要在windows NT 才能执行"),szAppName,MB_ICONERROR);
                return 0;
        }
       
        hwnd=CreateWindow(szAppName,
                        TEXT("fishc studio"),
                        WS_OVERLAPPEDWINDOW,
                        CW_USEDEFAULT,
                        CW_USEDEFAULT,
                        CW_USEDEFAULT,
                        CW_USEDEFAULT,
                        NULL,
                        NULL,
                        hInstance,
                        NULL);
       
        ShowWindow(hwnd,iCmdShow);
        UpdateWindow(hwnd);
       
        while(GetMessage(&msg,NULL,0,0))
        {
                TranslateMessage(&msg);
                DispatchMessage(&msg);
        }
       
        return msg.wParam;
}

lvk 发表于 2023-1-15 16:43:38

在菜单栏的工具中选编译器选项,然后在编译时的那里加入这个命令: -mwindows

额外减小 发表于 2023-1-15 17:02:03

lvk 发表于 2023-1-15 16:43
在菜单栏的工具中选编译器选项,然后在编译时的那里加入这个命令: -mwindows

谢谢大铑

人造人 发表于 2023-1-15 17:19:59

把函数赋值给一个变量,有什么问题?

sh-5.1$ cat main.c
#include <stdio.h>

int add(int a, int b) {return a + b;}

int main(void) {
    int (*func)(int a, int b) = add;
    printf("%d\n", func(1, 2));
    return 0;
}
sh-5.1$ gcc -g -Wall -o main main.c
sh-5.1$ ./main
3
sh-5.1$

额外减小 发表于 2023-1-15 17:30:14

人造人 发表于 2023-1-15 17:19
把函数赋值给一个变量,有什么问题?

这个问题是我刚才脑抽了,把函数指针忘了,自己后来想明白了

不过还是谢谢你
页: [1]
查看完整版本: 小甲鱼第三课窗口的程序报错了