Displaying 1 result from an estimated 1 matches for "bwinebuild".
Did you mean:
winebuild
2008 Dec 16
1
My first winelib app - where am I going wrong?
I eventually want to write a Linux application that can load Windows DLLs using winelib (I can do that, right?) but to start off, I just wanted to do a little Hello World test. Here's what I've got:
main.c
Code:
#include <windows.h>
int main(int argc, char** argv) {
MessageBox(NULL, "Hello world.", "Hello", MB_OK);
return 0;
}
This compiles fine