Barcode Xpress Mobile for iOS
BXThreadData.h
00001 /**************************************************************
00002  * Copyright 2011 - Accusoft Corporation, Tampa Florida.      *
00003  * This sample code is provided to Accusoft licensees "as is" *
00004  * with no restrictions on use or modification.  No warranty  *
00005  * for use of this sample code is provided by Accusoft.       *
00006  **************************************************************/
00007 
00015 #import <Foundation/Foundation.h>
00016 
00021 @interface BXThreadData : NSObject {
00022  @public
00024      int    m_threadID;
00026      void*  m_image;
00028      size_t m_width;
00030      size_t m_height;
00032      size_t m_stride;
00033  }
00034 
00036 @property (nonatomic) int m_threadID;
00038 @property (nonatomic) void* m_image;
00040 @property size_t m_width;
00042 @property size_t m_height;
00043 // Number of bytes per row in the image.
00044 @property size_t m_stride;
00045 
00046 @end