mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
21 lines
323 B
C++
21 lines
323 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
int alpha;
|
|
|
|
void SecondThread()
|
|
{
|
|
for(;;)
|
|
alpha++;
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
String x = "asdfasdfkjasdfkl alsjd fl hdasflk hdasfkl;jahs dlfkjh alsfhj la flf";
|
|
Thread d;
|
|
d.Run(callback(SecondThread));
|
|
PromptOK("test");
|
|
__BREAK__;
|
|
PromptOK("test");
|
|
}
|