Go Back   Velocity Reviews > General Computer Discussion > Software
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread
Old 03-09-2009, 03:25 AM   #1
Default Error: expected constructor, destructor or type conversion before '(' token


please help me out to remove this error....

Code:
#ifndef _DICOM_IO_H #define _DICOM_IO_H #ifdef DICOM_IO_EXPORTS #define _DECL_SPEC extern "C" __declspec(dllexport) #define _DECL_SPEC __declspec(dllexport) #else #define _DECL_SPEC __declspec(dllimport) #endif line 11_DECL_SPEC int __stdcall ReadImage(char *pucInputImagePath, unsigned char **ppImageData, unsigned int *puiWidth, unsigned int *puiHeight,int iRescaleMin =-1,int iRescaleMax =-1); line 14_DECL_SPEC int __stdcall LoadImageSeries(char *pucInputImageFolderPath, int* pSliceCnt, unsigned char ***pppImageData,unsigned int *puiWidth, unsigned int *puiHeight,int iRescaleMin =-1, int iRescaleMax =-1); line 18_DECL_SPEC int __stdcall ReadImage(char *pucInputImagePath, unsigned short **ppImageData,unsigned int *puiWidth, unsigned int *puiHeight,int iRescaleMin =-1, int iRescaleMax =-1); line 21_DECL_SPEC int __stdcall LoadImageSeries(char *pucInputImageFolderPath, int* pSliceCnt, unsigned short ***pppImageData,unsigned int *puiWidth, unsigned int *puiHeight,int iRescaleMin =-1, int iRescaleMax =-1); line 26_DECL_SPEC void* __stdcall LoadImageSeries(char *pucInputImageFolderPath, int* pSliceCnt); line 27_DECL_SPEC int __stdcall ReadImageSlice(void* ImgSeriesHandle, unsigned int uiSliceNumber, unsigned short **ppfImageData,unsigned int *puiWidth, unsigned int *puiHeight); #endif

Error : expected constructor, destructor, or type conversion before ‘(’ token HelloEclipse line 11 C/C++ Problem
Error : expected constructor, destructor, or type conversion before ‘(’ token HelloEclipse line 14 C/C++ Problem
Error : expected constructor, destructor, or type conversion before ‘(’ token HelloEclipse line 18 C/C++ Problem
Error : expected constructor, destructor, or type conversion before ‘(’ token HelloEclipse line 21 C/C++ Problem
Error : expected constructor, destructor, or type conversion before ‘(’ token HelloEclipse line 26 C/C++ Problem
Error : expected constructor, destructor, or type conversion before ‘(’ token HelloEclipse line 27 C/C++ Problem


suse
suse is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Conversion tool:Flash2Video hely0123 Software 0 11-01-2007 03:30 AM
VHS conversion: PC capture card, or standalone burner? Patrick Neve DVD Video 10 05-16-2006 09:34 AM
file conversion size/quality issues RichA DVD Video 0 03-02-2005 05:24 AM
Nero's Pal conversion flawed? RichA DVD Video 0 02-05-2005 04:22 AM
Token Ring Network Question Will Hay A+ Certification 1 03-01-2004 03:08 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46