Searched defs:ihObject (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/libuemf/
H A Duemf.c2468 \param ihObject Pointer to handle to delete. This value is set to 0 if the function succeeds.
2472 write a program where deleteobject_set() is called in a sequence where, at the time, we know that ihObject is defined.
2479 uint32_t *ihObject,
2482 uint32_t saveObject=*ihObject;
2483 if(emf_htable_delete(ihObject,eht))return(NULL); // invalid handle or other problem, cannot be deleted
2491 \param ihObject handle to select
2495 uint32_t ihObject,
2498 if(!(U_STOCK_OBJECT & ihObject)){ // not a stock object, those go straight through
2499 if(ihObject > eht->top)return(NULL); // handle this high is not in the table
2500 if(!eht->table[ihObject])retur
2478 deleteobject_set( uint32_t *ihObject, EMFHANDLES *eht ) argument
2494 selectobject_set( uint32_t ihObject, EMFHANDLES *eht ) argument
[all...]
H A Duwmf.c2132 \param ihObject Pointer to handle to delete. This value is set to 0xFFFFFFFF if the function succeeds.
2136 write a program where deleteobject_set() is called in a sequence where, at the time, we know that ihObject is defined.
2143 uint32_t *ihObject,
2146 uint32_t saveObject=*ihObject; /* caller 0->N */
2147 *ihObject += 1; /* caller 0->N --> 1->N+1 table*/
2148 if(wmf_htable_delete(ihObject,wht))return(NULL); /* invalid handle or other problem, cannot be deleted */
2149 *ihObject = 0xFFFFFFFF; /* EMF would have set to 0, but 0 is an allowed index in WMF */
2158 \param ihObject handle to select
2162 uint32_t ihObject,
2166 if(ihObject > wh
2142 wdeleteobject_set( uint32_t *ihObject, WMFHANDLES *wht ) argument
2161 wselectobject_set( uint32_t ihObject, WMFHANDLES *wht ) argument
[all...]
H A Duemf.h1212 For U_EMRSELECTOBJECT ihObject field.
2440 uint32_t ihObject; //!< Number of a stock or created object member in struct:__anon170
3454 char *deleteobject_set(uint32_t *ihObject, EMFHANDLES *eht);
3455 char *selectobject_set(uint32_t ihObject, EMFHANDLES *eht);
3513 char *U_EMRSELECTOBJECT_set(const uint32_t ihObject); // better to call selectobject_set()
3516 char *U_EMRDELETEOBJECT_set(const uint32_t ihObject); // better to call deleteobject_set()

Completed in 2521 milliseconds