Thread
:
OpenEQ Design
View Single Post
#
10
11-26-2004, 02:29 AM
jbb
Hill Giant
Join Date: Mar 2003
Location: UK
Posts: 242
For a windows app you need to replace
int main(int argc, char** argv)
with
int WINAPI WinMain(HINSTANCE, HINSTANCE, int, LPSTR)
{
}
assuming you don't actually care what the parameters are. (And it's c++ so you can leave them out)
jbb
View Public Profile
Send a private message to jbb
Find all posts by jbb