「winmain」的推薦目錄:
- 關於winmain 在 コバにゃんチャンネル Youtube 的最佳解答
- 關於winmain 在 大象中醫 Youtube 的最佳貼文
- 關於winmain 在 大象中醫 Youtube 的精選貼文
- 關於winmain 在 [問題] codeblocks10.05, WinMain@16的問題- 看板C_and_CPP 的評價
- 關於winmain 在 WinMain.c 的評價
- 關於winmain 在 WINMAIN and main() in C++ (Extended) 的評價
- 關於winmain 在 C++ Windows Programming Made Easy Tutorial 1 - WinMain 的評價
- 關於winmain 在 ida - Start vs WinMain() 的評價
winmain 在 大象中醫 Youtube 的最佳貼文
winmain 在 大象中醫 Youtube 的精選貼文
winmain 在 WinMain.c 的推薦與評價
This repo contains samples that demonstrate the API used in Windows classic desktop applications. ... <看更多>
winmain 在 [問題] codeblocks10.05, WinMain@16的問題- 看板C_and_CPP 的推薦與評價
遇到的問題: (題意請描述清楚)
c:\program
files\codeblocks\mingw\bin\..\lib\gcc\mingw32\4.4.1\..\..\..\libmingw32.a(main.o):main.c||
undefined reference to `WinMain@16'
||=== Build finished: 1 errors, 0 warnings ===|
程式跑出來的錯誤結果:
無法編
開發平台: (例: VC++ or gcc/g++ or Dev-C++, Windows or Linux)
codeblocks
我剛自學 照著學習網站看
https://caterpillar.onlyfun.net/Gossip/CGossip/FunctionABC.html
裡面有個math.h
想照著編譯試試 就出現WinMain@16
上網查了結果是說
use linker option : :-lmingw32 -lSDLmain –lSDL
要把 -lmingw32放前面 預設好像是 -lSDLmain –lSDL -lmingw32
問題來了,小弟英文不好,摸了半天不知道去哪改 settings裡的都按了
可以麻煩敎一下它的修改位置在哪嗎 謝謝
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 111.252.82.30
#ifndef xxx_H_INCLUDED
#define xxx_H_INCLUDED
int some(int);
#endif // xxx_H_INCLUDED
// xxx.c
#include "xxx.h"
int some(int num)
{ return num*num; }
// Area.c
#include <stdio.h>
#include "xxx.h"
const a=10;
int main(void)
{ printf("some(%d)= %d \n",a,some(a) );
return 0;
}
請問 問題點在哪 弄半天弄不出來 請恕小弟愚昧
undefined reference to `some
※ 編輯: twoseven 來自: 111.252.82.30 (11/17 00:08)
... <看更多>