summaryrefslogtreecommitdiff
path: root/src/Xw/Xw_isdefine_image.cxx
blob: 7372e08bda2dfa887a238154b752bce0765fc67e (plain)
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

#include <Xw_Extension.h>

	/* ifdef then trace on */
#ifdef TRACE
#define TRACE_ISDEFINE_IMAGE
#endif

/*
   XW_STATUS Xw_isdefine_image (aimage):
   XW_EXT_IMAGEDATA *aimage


	Returns XW_ERROR if Extended Image address is not properly defined
	Returns XW_SUCCESS if Successful      

*/
#ifdef XW_PROTOTYPE
XW_STATUS Xw_isdefine_image (void* aimage)
#else
XW_STATUS Xw_isdefine_image (aimage)
void* aimage;
#endif /*XW_PROTOTYPE*/
{
XW_EXT_IMAGEDATA *pimage = (XW_EXT_IMAGEDATA*) aimage;
XW_STATUS status = XW_ERROR ;

	if( pimage && (pimage->type == IMAGE_TYPE) && _IIMAGE ) {
	    status = XW_SUCCESS ;
	}


#ifdef  TRACE_ISDEFINE_IMAGE
if( Xw_get_trace() > 1 ) {
    printf (" %d = Xw_isdefine_image(%lx)\n",status,(long ) pimage) ;
}
#endif

	return (status);
}