Click here to Skip to main content
15,914,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: WM_MOUSEMOVE Pin
Flit30-May-05 5:30
Flit30-May-05 5:30 
GeneralMy last question before the article -> Calling External Functions from VC++ - IMPORTANT Pin
Axonn Echysttas27-May-05 1:40
Axonn Echysttas27-May-05 1:40 
GeneralRe: My last question before the article -> Calling External Functions from VC++ - IMPORTANT Pin
ThatsAlok27-May-05 1:48
ThatsAlok27-May-05 1:48 
GeneralRe: My last question before the article -> Calling External Functions from VC++ - IMPORTANT Pin
Chris Meech27-May-05 9:38
Chris Meech27-May-05 9:38 
GeneralRe: My last question before the article -> Calling External Functions from VC++ - IMPORTANT Pin
Axonn Echysttas27-May-05 11:47
Axonn Echysttas27-May-05 11:47 
GeneralRe: My last question before the article -> Calling External Functions from VC++ - IMPORTANT Pin
ThatsAlok27-May-05 17:55
ThatsAlok27-May-05 17:55 
Generalsaving edited bitmap Pin
laiju27-May-05 1:37
laiju27-May-05 1:37 
Generalregarding notation _(underscore) Pin
prat7827-May-05 0:47
prat7827-May-05 0:47 
i have an instance of OpenCv image library where a struytue is defines as
typedef struct _IplImage {
int nSize; /* size of iplImage struct */
int ID; /* image header version */
int nChannels;
int alphaChannel;
int depth; /* pixel depth in bits */
char colorModel[4];
char channelSeq[4];
int dataOrder;
int origin;
int align; /* 4- or 8-byte align */
int width;
int height;
struct _IplROI *roi; /* pointer to ROI if any */
struct _IplImage *maskROI; /*pointer to mask ROI if any */
void *imageId; /* use of the application */
struct _IplTileInfo *tileInfo; /* contains information on tiling
*/
int imageSize; /* useful size in bytes */
char *imageData; /* pointer to aligned image */
int widthStep; /* size of aligned line in bytes */
int BorderMode[4]; /* the top, bottom, left,
and right border mode */
int BorderConst[4]; /* constants for the top, bottom,
left, and right border */
char *imageDataOrigin; /* ptr to full, nonaligned image */


and is used in the main as
int main( int argc, char** argv )
{
IplImage* src;


my question what exactly does the underscore before the IplImage structure represent.
regards
GeneralRe: regarding notation _(underscore) Pin
Chris Losinger27-May-05 3:58
professionalChris Losinger27-May-05 3:58 
GeneralRe: regarding notation _(underscore) Pin
David Crow27-May-05 8:00
David Crow27-May-05 8:00 
GeneralINT_PTR Pin
IlanTal27-May-05 0:36
IlanTal27-May-05 0:36 
GeneralRe: INT_PTR Pin
ThatsAlok27-May-05 0:49
ThatsAlok27-May-05 0:49 
GeneralRe: INT_PTR Pin
Bob Stanneveld27-May-05 1:57
Bob Stanneveld27-May-05 1:57 
GeneralRe: INT_PTR Pin
toxcct27-May-05 0:51
toxcct27-May-05 0:51 
GeneralRe: INT_PTR Pin
ThatsAlok27-May-05 1:03
ThatsAlok27-May-05 1:03 
GeneralRe: INT_PTR Pin
toxcct27-May-05 1:05
toxcct27-May-05 1:05 
GeneralRe: INT_PTR Pin
Cedric Moonen27-May-05 1:06
Cedric Moonen27-May-05 1:06 
GeneralRe: INT_PTR Pin
ThatsAlok27-May-05 1:20
ThatsAlok27-May-05 1:20 
GeneralRe: INT_PTR Pin
toxcct27-May-05 1:30
toxcct27-May-05 1:30 
GeneralRe: INT_PTR Pin
Bob Stanneveld27-May-05 1:57
Bob Stanneveld27-May-05 1:57 
GeneralRe: INT_PTR Pin
Bob Stanneveld27-May-05 1:56
Bob Stanneveld27-May-05 1:56 
GeneralRe: INT_PTR Pin
ThatsAlok27-May-05 2:06
ThatsAlok27-May-05 2:06 
GeneralRe: INT_PTR Pin
Bob Stanneveld27-May-05 2:08
Bob Stanneveld27-May-05 2:08 
GeneralRe: INT_PTR Pin
ThatsAlok27-May-05 2:14
ThatsAlok27-May-05 2:14 
GeneralRe: INT_PTR Pin
Bob Stanneveld27-May-05 2:19
Bob Stanneveld27-May-05 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.