Fresh IDE . Artifact [b7c2f553f6]
Not logged in

This repository is a mirror!

The original is located on: https://fresh.flatassembler.net/fossil/repo/fresh
If you want to follow the project, please update your remote-url

Artifact b7c2f553f63c18f7954a8b0e756337b8ff5f0620:


; _______________________________________________________________________________________
;|                                                                                       |
;| ..:: Fresh IDE ::..  template project.                                                |
;|_______________________________________________________________________________________|
;
;  Description: FreshLib portable GUI application.
;
;  Target OS: Any, supported by FreshLib
;
;  Dependencies: FreshLib
;
;  Notes:
;_________________________________________________________________________________________

include "%lib%/freshlib.inc"
include "%lib%/gui/OldTemplates.inc"

@BinaryType GUI, compact

options.ShowSizes = 0

ThemeGUI equ win_gui

include "%lib%/freshlib.asm"


; include your includes here.
include "TestOldTemplates.frm"

start:
        InitializeAll

        create  [pApplication], TApplication

        call    GUI.Init

        stdcall CreateFromTemplate, frmMain.template, 0

        set     [pApplication], TApplication:MainWindow, frmMain

        set     [frmMain], TForm:Visible, TRUE

        stdcall Run

        FinalizeAll
        stdcall TerminateAll, 0