~ubuntu-branches/ubuntu/trusty/unrar-nonfree/trusty-proposed

« back to all changes in this revision

Viewing changes to model.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Chris Anderson
  • Date: 2004-12-01 02:22:56 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041201022256-c3pj5nufp88tdyw6
Tags: 3.4.3-1
* New upstream release 
* Applied Ulf Harnhammar's patch to solve overflows when $HOME was too
  large (closes: #280263).

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  PPM_CONTEXT* Successor;
48
48
};
49
49
 
 
50
struct FreqData
 
51
{
 
52
  ushort SummFreq;
 
53
  STATE _PACK_ATTR * Stats;
 
54
};
 
55
 
50
56
struct PPM_CONTEXT 
51
57
{
52
58
    ushort NumStats;
53
59
    union
54
60
    {
55
 
      struct
56
 
      {
57
 
        ushort SummFreq;
58
 
        STATE _PACK_ATTR * Stats;
59
 
      } U;
 
61
      FreqData U;
60
62
      STATE OneState;
61
63
    };
62
64