I can not get the goto error to work either.
I have set everything up according to the stream. W: drive and such.
4Coder runs and compiles everything fine except when there is an error.
I am using 4Coder 4.0.25 super user with Visual Studio 2013.
like on day 2/3
1
2
3
4
5
6
7
8
9
10
11
12
13 | #include <windows.h>
int CALLBACK
WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
MessageBoxA(0, "This is Handmade Hero.", "Handmade Hero",
MB_OK|MB_ICONINFORMATION)
return(0);
}
|
yes I know there is a ; missing. It is a test. It reports this back:
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
win32_handmade.cpp
..\Code\win32_handmade.cpp(20) : error C2143: syntax error : missing ';' before return'
exited with code 0
It reports the error ok but I can not get it to jump to the error in code.
I thought it was ctrl/alt n? or by mouse click on the 20 and enter? Either way nothing happens.
I'm sure Am I misunderstanding something simple here.