dmoc: i don't trick anyone, i just removed some unworking stuffs


cologneskater: 3 new constants have been added for menu: #PB_Menu_Quit, #PB_Menu_About and #PB_Menu_Preferences. These constants won't be defined on Windows/Linux but on OS X yes (which allow you to choose your own value on Linux/Windows). Why these constants are in ? Because on OS X these 3 menu items are expected to be in the 'Application' menu which is a special one. So when PB encounter a menu item with a such constant it moves it automatically. Usage: MenuItem(#PB_Menu_Quit, "Quit") etc. Shortcuts on such menus are ignored as OS X setup its own.
2) It's #PB_OS_MacOS (value 4 if you need to define it on Winodws for now)
3) fixed
4) When creating an exe which should be an OS X application, just ends its name by '.app' and it willl create the correct structure for it. For example 'MyApp.app'.
J-The-Grey: WindowOutput() doesn't work for now, you're right. Other outputs should work tough.
Don't hesitate to posts any bugs, it helps a lot !