Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* sc.ini */
- "-I%@P%\..\import\"
- /* dfl exe */
- dmd -de -w -property -release -O -m32 -X -IC:\D\dmd2\windows\import dfl.lib ole32.lib oleAut32.lib gdi32.lib Comctl32.lib Comdlg32.lib advapi32.lib uuid.lib ws2_32.lib -L/SUBSYSTEM:WINDOWS app.d
- /* dfl main */
- int main()
- {
- int result = 0;
- try
- {
- // Application initialization code here.
- Application.enableVisualStyles();
- Application.run(new ComboForm);
- }
- catch(DflThrowable o)
- {
- msgBox(o.toString(), "Fatal Error", MsgBoxButtons.OK, MsgBoxIcon.ERROR);
- result = 1;
- }
- return result;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement