11 lines
250 B
C++
11 lines
250 B
C++
#include <common/windows.hpp>
|
|
#include <cashflow/calcdlg.hpp>
|
|
|
|
int PASCAL WinMain(HINSTANCE /*hInstance*/,HINSTANCE /*hPrevInstance*/,LPSTR /*lpszCmdLine*/,int /*nCmdShow*/)
|
|
{
|
|
CalcDlg calcDialog;
|
|
calcDialog.createDialog((HWND)0);
|
|
return FALSE;
|
|
}
|
|
|