Can we use wmain() functions with Unix compilers o

2019-01-25 09:51发布

Can we use wmain() functions with Unix compilers or it'll work only on\for windows?

3条回答
够拽才男人
2楼-- · 2019-01-25 10:08

The only standard signatures for main are:

int main(void);
int main(int argc, char *argv[]);

However, a freestanding implementation can provide extensions/allow other signatures. But those are not guranteed to be portable. wmain looks like a Windows/VS thing. There's not much chance this will work on a *nix/GNU GCC.

查看更多
对你真心纯属浪费
3楼-- · 2019-01-25 10:13

wmain() is windows-specific. Just like _tmain, if that matters...

查看更多
仙女界的扛把子
4楼-- · 2019-01-25 10:27

The wmain signature exists in Windows to handle wide-character command line arguments. Generally, while Windows applications prefer UTF16, Unix applications prefer UTF8 for Unicode string encoding. UTF8 uses regular char character strings, so the standard main signature suffices for Unicode-aware Unix appications.

If you want to make a portable console application that does not require Unicode command line parameters, use main. If you do need Unicode command line parameters, then you need preprocessor directives that will enable the signature appropriate to each environment.

If you are making a cross-platform GUI application, use a special framework, like QT.

查看更多
登录 后发表回答