Ignore:
Timestamp:
Apr 15, 2009 2:45:41 PM (15 years ago)
Author:
nanang
Message:

Ticket #774:

  • Added build config for GNU autoconf & make.
  • Fixed some G.722.1 codes for linux & mingw32 targets, e.g: types

defs, collision function name 'round'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/third_party/g7221/common/stl-files/typedef.h

    r2563 r2601  
    1616#ifndef TYPEDEF_H 
    1717#define TYPEDEF_H "$Id $" 
     18 
     19#if 1 
     20 
     21/* Use PJLIB types definitions (for PJLIB sync'd platforms compatibility?  
     22 * e.g: mingw32 was not supported by the original version). 
     23 */ 
     24#include <pj/types.h> 
     25 
     26typedef pj_int8_t Word8; 
     27typedef pj_int16_t Word16; 
     28typedef pj_int32_t Word32; 
     29typedef pj_uint16_t UWord16; 
     30typedef pj_uint32_t UWord32; 
     31typedef int Flag; 
     32 
     33#else 
    1834 
    1935#include <limits.h> 
     
    5369#endif 
    5470 
     71#endif /* if 0 */ 
     72 
    5573#endif /* TYPEDEF_H */ 
     74 
Note: See TracChangeset for help on using the changeset viewer.