Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f74ccbda
Commit
f74ccbda
authored
Jun 22, 2013
by
Davis King
Browse files
Improved instructions for avoiding the black console window when using visual studio.
parent
094c357a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
18 deletions
+8
-18
examples/gui_api_ex.cpp
examples/gui_api_ex.cpp
+8
-18
No files found.
examples/gui_api_ex.cpp
View file @
f74ccbda
...
@@ -217,24 +217,14 @@ int main()
...
@@ -217,24 +217,14 @@ int main()
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// If you use main() as your entry point when building a program on MS Windows then
// Normally, if you built this application on MS Windows in Visual Studio you
// there will be a black console window associated with your application. If you
// would see a black console window pop up when you ran it. The following
// want your application to not have this console window then you need to build
// #pragma directives tell Visual Studio to not include a console window along
// using the WinMain() entry point as shown below and also set your compiler to
// with your application. However, if you prefer to have the console pop up as
// produce a "Windows" project instead of a "Console" project. In visual studio
// well then simply remove these #pragma statements.
// this can be accomplished by going to project->properties->general configuration->
#ifdef _MSC_VER
// Linker->System->SubSystem and selecting Windows instead of Console.
# pragma comment( linker, "/entry:mainCRTStartup" )
//
# pragma comment( linker, "/SUBSYSTEM:WINDOWS" )
#ifdef WIN32
int
WINAPI
WinMain
(
HINSTANCE
,
HINSTANCE
,
PSTR
cmds
,
int
)
{
return
main
();
}
#endif
#endif
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment