Hi, Basically, itâs that ! But in the Gnome tutorial (UsingMSVC), they forgot to specify how to redirect Gtk UI to WinAPI properly and they didn't append imm32.lib and msvcrt.lib static libraries. Your main.c/cpp should be like that : #include "stdafx.h" //this should be first line of the program! #include <regex> #include <windows.h> using namespace std; int main( int argc, char **argv ); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine,int nCmdShow){ return main (__argc, __argv); } int main (int argc, char *argv[]) { Gtk::Main app(argc, argv); Gtk::Window * aWindow; Gtk::Main::run( *aWindow ); std::cout<<"bye"<<std::endl; return 0; } Regards Marco Dos Santos Oliveira EBU/European Broadcasting Union Technology and Innovation Department From: Doesnt Stop [mailto:DoesntStop mail com] I see, it is not as easy as the tutorial explains (https://live.gnome.org/gtkmm/MSWindows/UsingMSVC) Is there any other tutorial that you are aware of, I would like to knwo in more detail how to make gtkmm work with VSE10. Better yet if you can provide me with a little bit of data that would show me how it is done, that would be very nice. Thanks
[...]
************************************************** |