]> git.sur5r.net Git - cc65/commitdiff
sample programs updated for new GEOS exit/return/MainLoop policy
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 10 Jan 2003 21:09:13 +0000 (21:09 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 10 Jan 2003 21:09:13 +0000 (21:09 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1899 b7a2c559-68d2-44c3-8de9-860c34a00d81

samples/geos/filesel.c
samples/geos/geosconio.c
samples/geos/hello1.c
samples/geos/hello2.c
samples/geos/rmvprot.c
samples/geos/yesno.c

index a25aa3e1e69f13e73681b9e90aca9a224e1a03dd..9247fc2894919a10701990169ec1e20754d41679 100644 (file)
@@ -5,8 +5,8 @@
     
     using DlgBoxFileSelect
     
-    Maciej 'YTM/Alliance' Witkowiak
-    <ytm@friko.onet.pl>
+    Maciej 'YTM/Elysium' Witkowiak
+    <ytm@elysium.pl>
     
     26.12.1999
 */
@@ -24,5 +24,4 @@ void main (void)
     DlgBoxFileSelect("",APPLICATION,fName);
     DlgBoxOk("You've chosen:" CBOLDON, fName);
 
-    EnterDeskTop();
 }
index 6161274857491fc1e7439b244aa8739547aeb158..1c728f8514fc1d00477d577919c17dd14fed0758 100644 (file)
@@ -55,6 +55,4 @@ char ch;
 
     DlgBoxOk("Bye,", "Bye.");
 
-    EnterDeskTop();
-
 }
index f4b5e626a2a2dffd9a9c8d0c18b987f88f54dab0..749cb29f9a5a8f4b581607b4cced88126bd8ab63 100644 (file)
@@ -5,8 +5,8 @@
     
     Hello, world example - with DBox
     
-    Maciej 'YTM/Alliance' Witkowiak
-    <ytm@friko.onet.pl>
+    Maciej 'YTM/Elysium' Witkowiak
+    <ytm@elysium.pl>
     
     26.12.1999
 */
@@ -24,6 +24,12 @@ void main (void)
 /* Normal apps exit from main into system's mainloop, and app finish
    when user selects it from icons or menu, but here we want to exit
    immediately.
+   So instead:
+    MainLoop();
+   we can do:
+    (nothing as this is the end of main function)
+    exit(0);
+    return;
 */
-    EnterDeskTop();
+    return;
 }
index 8bc28ab3dfcb56a2070cad13fd8b62f95fd8fb9e..1692c4b5b6db4a5dde168ba08e7505d130f74d16 100644 (file)
@@ -45,6 +45,12 @@ void main (void)
 /* Normal apps exit from main into system's mainloop, and app finish
    when user selects it from icons or menu, but here we want to exit
    immediately.
+   So instead:
+    MainLoop();
+   we can do:
+    (nothing as this is the end of main function)
+    exit(0);
+    return;
 */
-    EnterDeskTop();
+    return;
 }
index a249290efed420badb89abb46f1d809b8bcfd839..3e324da3810fd85b24f57f9d9a1af8946d1d8b24 100644 (file)
@@ -6,8 +6,8 @@
     This small application removes GEOS disk write protection tag.
     e.g. boot disk is always protected after boot-up
     
-    Maciej 'YTM/Alliance' Witkowiak
-    <ytm@friko.onet.pl>
+    Maciej 'YTM/Elysium' Witkowiak
+    <ytm@elysium.pl>
     
     21.03.2000
 */
@@ -81,7 +81,7 @@ void main(void)
                        GetPtrCurDkNm(diskName);
                        break;
                default:        /* CANCEL is the third option */
-                       EnterDeskTop();
+                       return;
                        break;
                }
        }
index b085db91ac2951b2a02fdc20a4bc4d39b5447d33..dadf114498a77c4a2ea9c85520adbbaa3942abf8 100644 (file)
@@ -5,8 +5,8 @@
 
    example of using DlgBoxYesNo, DlgBoxOkCancel and DlgBoxOk functions
 
-   Maciej 'YTM/Alliance' Witkowiak
-   <ytm@friko.onet.pl>
+   Maciej 'YTM/Elysium' Witkowiak
+   <ytm@elysium.pl>
 
    26.12.1999
  */
@@ -23,5 +23,4 @@ void main(void)
                };
        } while (DlgBoxOkCancel("Do you want to try again?", "") == OK);
 
-    EnterDeskTop();
 }