~ubuntu-branches/ubuntu/raring/hplip/raring

« back to all changes in this revision

Viewing changes to prnt/hpcups/Pcl3GuiPrintModes.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-14 20:08:44 UTC
  • mfrom: (2.1.118 lucid)
  • Revision ID: james.westby@ubuntu.com-20091214200844-z8qhqwgppbu3t7ze
Tags: 3.9.10-4
KBSD patch from KiBi (Closes: #560796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "CommonDefinitions.h"
 
2
#include "dj890PrintModes.h"
 
3
#include "dj895PrintModes.h"
 
4
#include "dj8x5PrintModes.h"
 
5
#include "dj970PrintModes.h"
 
6
 
 
7
PrintModeTable pcl3_gui_print_modes_table [] =
 
8
{
 
9
    {"dj890", dj890PrintModes, sizeof(dj890PrintModes)/sizeof(PrintMode)},
 
10
    {"dj895", dj895PrintModes, sizeof(dj895PrintModes)/sizeof(PrintMode)},
 
11
    {"dj8x5", dj8x5PrintModes, sizeof(dj8x5PrintModes)/sizeof(PrintMode)},
 
12
    {"dj970", dj970PrintModes, sizeof(dj970PrintModes)/sizeof(PrintMode)}
 
13
};
 
14