~ubuntu-branches/ubuntu/raring/freerdp/raring-proposed

« back to all changes in this revision

Viewing changes to asn1/NativeInteger.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Jeremy Bicha, Jean-Louis Dupond, Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120131100214-jaok3uwvni7sqxth
Tags: 1.0.0-0git1
Upload current Debian packaging git to get this rolling for precise.

[ Jeremy Bicha ]
* New upstream release. Closes: #647498.
* Updated symbols and bumped soname
* debian/control:
  - Added new build dependencies
  - Bump Standards-Version to 3.9.2
* debian/source/format: Set to 3.0 (quilt)
* debian/rules: Turn on strict symbols checking
* debian/watch: Watch github

[ Jean-Louis Dupond ]
* debian/control: Updated homepage
* debian/copyright: Reflect upstream switch to the Apache license

[ Martin Pitt ]
* debian/libfreerdp0.symbols: Fix version number, should
  be 1.0~beta5, not 1.0-beta5.
* debian/control: Add libavcodec-dev build dependency, upstream build system
  checks for that. Thanks Jean-Louis Dupond!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*-
2
 
 * Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3
 
 * Redistribution and modifications are permitted subject to BSD license.
4
 
 */
5
 
/*
6
 
 * This type differs from the standard INTEGER in that it is modelled using
7
 
 * the fixed machine type (long, int, short), so it can hold only values of
8
 
 * limited length. There is no type (i.e., NativeInteger_t, any integer type
9
 
 * will do).
10
 
 * This type may be used when integer range is limited by subtype constraints.
11
 
 */
12
 
#ifndef _NativeInteger_H_
13
 
#define _NativeInteger_H_
14
 
 
15
 
#include <asn_application.h>
16
 
#include <INTEGER.h>
17
 
 
18
 
#ifdef __cplusplus
19
 
extern "C" {
20
 
#endif
21
 
 
22
 
extern asn_TYPE_descriptor_t asn_DEF_NativeInteger;
23
 
 
24
 
asn_struct_free_f  NativeInteger_free;
25
 
asn_struct_print_f NativeInteger_print;
26
 
ber_type_decoder_f NativeInteger_decode_ber;
27
 
der_type_encoder_f NativeInteger_encode_der;
28
 
xer_type_decoder_f NativeInteger_decode_xer;
29
 
xer_type_encoder_f NativeInteger_encode_xer;
30
 
per_type_decoder_f NativeInteger_decode_uper;
31
 
per_type_encoder_f NativeInteger_encode_uper;
32
 
 
33
 
#ifdef __cplusplus
34
 
}
35
 
#endif
36
 
 
37
 
#endif  /* _NativeInteger_H_ */