~ubuntu-branches/ubuntu/hardy/ndiswrapper/hardy

« back to all changes in this revision

Viewing changes to driver/loader.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-12-07 20:42:35 UTC
  • mfrom: (1.2.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20071207204235-s43f889d3h1u6vrl
Tags: 1.50-1ubuntu1
* Merge with Debian; remaining changes:
  - Build for lpia.
  - debian/control:
    + Update description to point out that the kernel source package is
      not required with the standard Ubuntu kernel.
    + Change the Maintainer address.
  - debian/control:
    + Drop ndiswrapper-source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
struct load_driver {
49
49
        char name[MAX_DRIVER_NAME_LEN];
50
50
        char conf_file_name[MAX_DRIVER_NAME_LEN];
51
 
        unsigned int nr_sys_files;
 
51
        unsigned int num_sys_files;
52
52
        struct load_driver_file sys_files[MAX_DRIVER_PE_IMAGES];
53
 
        unsigned int nr_settings;
 
53
        unsigned int num_settings;
54
54
        struct load_device_setting settings[MAX_DEVICE_SETTINGS];
55
 
        unsigned int nr_bin_files;
 
55
        unsigned int num_bin_files;
56
56
        struct load_driver_file bin_files[MAX_DRIVER_BIN_FILES];
57
57
};
58
58