This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Compiler Error C2449
found '{' at file scope (missing function header?)
An open brace occurs at file scope.
Possible cause
- A semicolon between a function header and the opening brace of the function definition.
Example
int __stdcall func(void); // extra semicolon on this line
{ // error detected here