Home | History | Annotate | Download | only in mtp
      1 /*
      2  * Copyright (C) 2010 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef _MTP_DEVICE_INFO_H
     18 #define _MTP_DEVICE_INFO_H
     19 
     20 struct stat;
     21 
     22 namespace android {
     23 
     24 class MtpDataPacket;
     25 
     26 class MtpDeviceInfo {
     27 public:
     28     uint16_t                mStandardVersion;
     29     uint32_t                mVendorExtensionID;
     30     uint16_t                mVendorExtensionVersion;
     31     char*                   mVendorExtensionDesc;
     32     uint16_t                mFunctionalMode;
     33     UInt16List*             mOperations;
     34     UInt16List*             mEvents;
     35     MtpDevicePropertyList*  mDeviceProperties;
     36     MtpObjectFormatList*    mCaptureFormats;
     37     MtpObjectFormatList*    mPlaybackFormats;
     38     char*                   mManufacturer;
     39     char*                   mModel;
     40     char*                   mVersion;
     41     char*                   mSerial;
     42 
     43 public:
     44                             MtpDeviceInfo();
     45     virtual                 ~MtpDeviceInfo();
     46 
     47     bool                    read(MtpDataPacket& packet);
     48 
     49     void                    print();
     50 };
     51 
     52 }; // namespace android
     53 
     54 #endif // _MTP_DEVICE_INFO_H
     55