~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/wxWidgets3/src/common/dummy.cpp

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * File:        src/common/dummy.cpp
 
3
 * Purpose:     See below
 
4
 * Author:      Julian Smart
 
5
 * Created:     1993
 
6
 * Updated:
 
7
 * Copyright:   (c) 1993, AIAI, University of Edinburgh
 
8
 */
 
9
 
 
10
/* A dummy file to include wx.h. If precompiling wx.h,
 
11
 * always start by compiling this and producing the PCH file.
 
12
 * Then subsequent source files use the PCH file.
 
13
 *
 
14
 * If precompiling wx.h for wxWidgets and derived apps,
 
15
 * link dummy.obj with your program.
 
16
 *
 
17
 * This will produce a big PCH file.
 
18
 */
 
19
 
 
20
#include "wx/wxprec.h"
 
21
 
 
22
#ifdef __BORLANDC__
 
23
    #pragma hdrstop
 
24
#endif
 
25
 
 
26
#ifdef __WINDOWS__
 
27
    #include "wx/msw/msvcrt.h"
 
28
#endif
 
29
 
 
30
#ifdef __VISAGECPP__
 
31
    char wxDummyChar = 0;
 
32
#endif