Develop and Download Open Source Software

Browse Subversion Repository

Contents of /branches/FeliCa2Money-1/FeliCa2Money.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 204 - (show annotations) (download) (as text)
Sun May 18 04:21:26 2008 UTC (15 years, 10 months ago) by tmurakam
File MIME type: text/x-c++src
File size: 1410 byte(s)
Move older version (ver 1.x)

1 /*
2 * FeliCa2Money
3 *
4 * Copyright (C) 2001-2007 Takuya Murakami
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20 //---------------------------------------------------------------------------
21
22 #include <vcl.h>
23 #pragma hdrstop
24 USEFORM("MainForm.cpp", MForm);
25 //---------------------------------------------------------------------------
26 WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
27 {
28 try
29 {
30 Application->Initialize();
31 Application->Title = "FeliCa2Money";
32 Application->CreateForm(__classid(TMForm), &MForm);
33 Application->Run();
34 }
35 catch (Exception &exception)
36 {
37 Application->ShowException(&exception);
38 }
39 return 0;
40 }
41 //---------------------------------------------------------------------------

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26