source: trunk/Utilities/Miscellaneous/SharedClockRun/Application.cpp @ 937

Last change on this file since 937 was 324, checked in by roman, 10 years ago
File size: 515 bytes
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2014
3// Created by Roman Ryltsov roman@alax.info
4//
5// A permission to use the source code is granted as long as reference to
6// source website http://alax.info is retained.
7
8#include "stdafx.h"
9//#include "resource.h"
10#include "Module.h"
11
12int _tmain(int argc, _TCHAR* argv[])
13{
14        CModule Module;
15        _ATLTRY
16        {
17                Module.WinMain(SW_SHOWNORMAL);
18        }
19        _ATLCATCHALL()
20        {
21                _Z_EXCEPTION();
22        }
23        return 0;
24}
Note: See TracBrowser for help on using the repository browser.