HoverRace  2.0
AboutDialog.h
Go to the documentation of this file.
1 #ifdef HR_LEGACY_BUILD
2 
3 // AboutDialog.h
4 // Header for the "About" dialog.
5 //
6 // Copyright (c) 1995-1998 - Richard Langlois and Grokksoft Inc.
7 //
8 // Licensed under GrokkSoft HoverRace SourceCode License v1.0(the "License");
9 // you may not use this file except in compliance with the License.
10 //
11 // A copy of the license should have been attached to the package from which
12 // you have taken this file. If you can not find the license you can not use
13 // this file.
14 //
15 //
16 // The author makes no representations about the suitability of
17 // this software for any purpose. It is provided "as is" "AS IS",
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
19 // implied.
20 //
21 // See the License for the specific language governing permissions
22 // and limitations under the License.
23 //
24 
25 #pragma once
26 
27 namespace HoverRace {
28 namespace Client {
29 
30 class AboutDialog
31 {
32  public:
33  AboutDialog() { }
34  ~AboutDialog() { }
35 
36  bool ShowModal(HINSTANCE hinst, HWND parent);
37 
38  private:
39  static BOOL CALLBACK DlgFunc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam);
40 };
41 
42 } // namespace Client
43 } // namespace HoverRace
44 #endif
Definition: Announcement.h:24