~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/miniupnpc/src/miniupnpctypes.h

  • 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
/* $Id: miniupnpctypes.h,v 1.2 2012/09/27 15:42:10 nanard Exp $ */
 
2
/* Miniupnp project : http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org
 
3
 * Author : Thomas Bernard
 
4
 * Copyright (c) 2011 Thomas Bernard
 
5
 * This software is subject to the conditions detailed in the
 
6
 * LICENCE file provided within this distribution */
 
7
#ifndef MINIUPNPCTYPES_H_INCLUDED
 
8
#define MINIUPNPCTYPES_H_INCLUDED
 
9
 
 
10
#if (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
 
11
#define UNSIGNED_INTEGER unsigned long long
 
12
#define STRTOUI strtoull
 
13
#else
 
14
#define UNSIGNED_INTEGER unsigned int
 
15
#define STRTOUI strtoul
 
16
#endif
 
17
 
 
18
#endif
 
19