~steve-sk2/mingw-w64/oneiric

« back to all changes in this revision

Viewing changes to mingw-w64-headers/include/mapinls.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2010-11-18 00:04:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101118000446-xe24b423su55onyl
Tags: 1.0+20101003-1
* New maintainer. (Closes: #594371.)
* New upstream snapshot:
  - Includes getopt.h. (Closes: #569914.)
* Build g++ for Win64. (Closes: #600451.)
* Standards-Version 3.9.1 (new packaging).
* Include patch from
  http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64?view=revision&revision=3715
  as suggested by Rafaël Carré.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  typedef char CHAR;
33
33
#endif
34
34
 
35
 
#ifdef UNICODE
 
35
#if defined(UNICODE)
36
36
  typedef WCHAR TCHAR;
37
37
#else
38
38
  typedef char TCHAR;
39
39
#endif
40
40
 
 
41
#ifndef __WCHAR_DEFINED
 
42
#define __WCHAR_DEFINED
41
43
  typedef unsigned short WCHAR;
 
44
#endif
42
45
  typedef WCHAR *LPWSTR;
43
46
  typedef const WCHAR *LPCWSTR;
44
47
  typedef CHAR *LPSTR;