~mingw-w64/mingw-w64/experimental

« back to all changes in this revision

Viewing changes to ros-privexp/mingw-w64-crt/libsrc/dxerr8w.c

  • Committer: NightStrike
  • Date: 2010-08-11 22:20:57 UTC
  • Revision ID: svn-v4:4407c894-4637-0410-b4f5-ada5f102cad1:experimental:3266
Branch for adding option for supporting ros

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
        dxerr8w.c - DirectX 8 Wide Character Error Functions
 
4
 
 
5
        Written by Filip Navara <xnavara@volny.cz>
 
6
 
 
7
        This library is distributed in the hope that it will be useful,
 
8
        but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
10
 
 
11
*/
 
12
 
 
13
#define UNICODE
 
14
#define _UNICODE
 
15
#define DXGetErrorString        DXGetErrorString8W
 
16
#define DXGetErrorDescription   DXGetErrorDescription8W
 
17
#define DXTrace DXTraceW
 
18
#define DXERROR8(v,n,d) {v, L##n, L##d},
 
19
#define DXERROR8LAST(v,n,d) {v, L##n, L##d}
 
20
#include "dxerr.c"
 
21