Share via


LINEGENERALINFO

The LINEGENERALINFO structure holds miscellaneous information about the device and its software. This structure is used with lineGetGeneralInfo calls.

typedef struct linegeneralinfo_tag {
  DWORD dwTotalSize;
  DWORD dwNeededSize;
  DWORD dwUsedSize;
  DWORD dwManufacturerSize;
  DWORD dwManufacturerOffset;
  DWORD dwModelSize;
  DWORD dwModelOffset;
  DWORD dwRevisionSize;
  DWORD dwRevisionOffset;
  DWORD dwSerialNumberSize;
  DWORD dwSerialNumberOffset;
  DWORD dwSubscriberNumberSize;
  DWORD dwSubscriberNumberOffset;
} LINEGENERALINFO, * LPLINEGENERALINFO;

Members

  • dwTotalSize
    The total size in bytes allocated to this data structure.
  • dwNeededSize
    The size in bytes for this data structure that is needed to hold all of the returned information.
  • dwUsedSize
    The size in bytes of the portion of this data structure that contains useful information.
  • dwManufacturerSize
    The size in bytes of the Unicode manufacturer name.
  • dwManufacturerOffset
    The offset from the beginning of the structure of the Unicode manufacturer name. This value indicates the maker of the underlying radio.
  • dwModelSize
    The size in bytes of the Unicode model name.
  • dwModelOffset
    The offset from the beginning of the structure of the Unicode model name. This value indicates the model of the underlying radio.
  • dwRevisionSize
    The size in bytes of the Unicode revision name.
  • dwRevisionOffset
    The offset from the beginning of the structure of the Unicode revision name. This value indicates the software version of the radio stack.
  • dwSerialNumberSize
    The size in bytes of the Unicode serial number.
  • dwSerialNumberOffset
    The offset from the beginning of the structure of the Unicode serial number. This value indicates the equipment identity International Mobile Equipment Identity (IMEI) code.
  • dwSubscriberNumberSize
    The size in bytes of the Unicode serial number.
  • dwSubscriberNumberOffset
    The offset from the beginning of the structure of the Unicode serial number. This value indicates the Unicode subscriber number.

Requirements

Pocket PC Platforms: Pocket PC 2002 and later
OS Versions: Windows CE 3.0 and later
Header: extapi.h
Library: cellcore.lib

Send feedback on this topic to the authors.

© 2005 Microsoft Corporation. All rights reserved.