| Return Type | Method Summary |
| void | CloseResource(void *resourcePtr)
This function closes the Resource pointed by the Resource pointer. |
| INT32 | GetResourceLength(CHAR *resourceName)
It will calculate the length of the Resource which is coming as argument and returns it . |
| CHAR | IsEndOfResource(void *resourcePtr)
This function finds out whether the Resource pointer has come to the end or not. |
| void* | OpenResource(CHAR *resourceName, CHAR *mode)
This function opens the Resource specified in the argument in the specified mode. |
| CHAR | ReadALineFromResource(void *resourcePtr, StringBuffer *strBuf)
This function reads a line from the Resource and stores it in the Stringbuffer. |
| CHAR* | ReadResourceContents(CHAR *resourceName, INT32 *bufLen)
It will return the contents of the Resource coming as the argument and returns NULL if it is not available. |
| Method Details |