.Developing rainbow

git-svn-id: svn://ultimatepp.org/upp/trunk@3707 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-07-24 17:18:53 +00:00
parent 0fc3c5291e
commit 52f68cc6b4
11 changed files with 92 additions and 15 deletions

View file

@ -0,0 +1,11 @@
uses
CtrlLib,
WinFb;
file
main.cpp;
mainconfig
"" = "GUI SSE2 WINFB",
"" = "GUI SSE2";

5
rainbow/SysShutdown/init Normal file
View file

@ -0,0 +1,5 @@
#ifndef _SysShutdown_icpp_init_stub
#define _SysShutdown_icpp_init_stub
#include "CtrlLib/init"
#include "WinFb/init"
#endif

View file

@ -0,0 +1,10 @@
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
int q = PromptYesNo("Just a test");
DDUMP(q);
PromptOK(AsString(q));
}