~ubuntu-branches/debian/squeeze/stella/squeeze

« back to all changes in this revision

Viewing changes to src/win32/StellaX/pch.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Mario Iseli
  • Date: 2006-04-08 18:38:25 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060408183825-vu1jk57rk929derx
* New Maintainer (Closes: #361345)
* New upstream release (Closes: #349725)
* Build-Depend now on libslang2-dev (Closes: #325577)
* Complete rebuild of debian/, upgraded to policy-standards
  3.6.2 and compat-level 5.
* Removed stellarc since stella only reads ~/.stellarc and even
  works without a first config.
* New debian/watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//============================================================================
2
 
//
3
 
//   SSSS    tt          lll  lll          XX     XX
4
 
//  SS  SS   tt           ll   ll           XX   XX
5
 
//  SS     tttttt  eeee   ll   ll   aaaa     XX XX
6
 
//   SSSS    tt   ee  ee  ll   ll      aa     XXX
7
 
//      SS   tt   eeeeee  ll   ll   aaaaa    XX XX
8
 
//  SS  SS   tt   ee      ll   ll  aa  aa   XX   XX
9
 
//   SSSS     ttt  eeeee llll llll  aaaaa  XX     XX
10
 
//
11
 
// Copyright (c) 1995-2000 by Jeff Miller
12
 
// Copyright (c) 2004 by Stephen Anthony
13
 
//
14
 
// See the file "license" for information on usage and redistribution of
15
 
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
16
 
//
17
 
// $Id: pch.hxx,v 1.3 2004/07/15 03:03:27 stephena Exp $
18
 
//============================================================================
19
 
 
20
 
#ifndef PCH_HXX
21
 
#define PCH_HXX
22
 
 
23
 
#define WIN32_LEAN_AND_MEAN
24
 
#define DIRECTINPUT_VERSION 5
25
 
 
26
 
#include <windows.h>
27
 
#include <windowsx.h>
28
 
#include <tchar.h>
29
 
 
30
 
#include <mmsystem.h>
31
 
#include <commdlg.h>
32
 
#include <commctrl.h>
33
 
 
34
 
#include <dinput.h>
35
 
 
36
 
#include "debug.hxx"
37
 
 
38
 
// ---------------------------------------------------------------------------
39
 
// Conditional defines
40
 
 
41
 
// Macros
42
 
//
43
 
 
44
 
#ifdef _DEBUG
45
 
#define UNUSED(x)
46
 
#else
47
 
#define UNUSED(x) x
48
 
#endif
49
 
#define UNUSED_ALWAYS(x) x
50
 
 
51
 
// Utility methods
52
 
//
53
 
 
54
 
void MessageBox( HINSTANCE hInstance, HWND hwndParent, UINT uIDText );
55
 
 
56
 
void MessageBoxFromWinError( DWORD dwError, LPCTSTR pszCaption /* = NULL */ );
57
 
 
58
 
void MessageBoxFromGetLastError( LPCTSTR pszCaption /* = NULL */ );
59
 
 
60
 
#endif