Thread: OpenEQ Design
View Single Post
  #10  
Old 11-26-2004, 02:29 AM
jbb
Hill Giant
 
Join Date: Mar 2003
Location: UK
Posts: 242
Default

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)
Reply With Quote