MoreTextMgr.h
Go to the documentation of this file.00001 /****************************************************************************** 00002 * MorePalmOS 00003 * Copyright (c) 2004 Steven Fisher 00004 * 00005 * Distributed under the Boost Software License, Version 1.0. See accompanying 00006 * license file License.txt or <http://www.boost.org/LICENSE_1_0.txt>. 00007 * 00008 * http://morepalmos.sourceforge.net 00009 * 00010 * MorePalmOS is the humble begining of an attempt to provide a library for 00011 * Palm OS development which works around system bugs, illustrate how to 00012 * use system calls, and provide "glue code" for programming Palm OS 00013 * applications in a more straightforward way while minimally impacting 00014 * code size. 00015 *****************************************************************************/ 00016 00019 #ifndef MORETEXTMGR_H 00020 #define MORETEXTMGR_H 00021 00022 #ifdef __cplusplus 00023 extern "C" { 00024 #endif 00025 00026 #include "MorePrefix.h" 00027 #include "MoreMemoryMgr.h" 00028 #include "MoreTypes.h" 00029 00030 #include <TextMgr.h> 00031 00036 char* MTxtParamStringByIndex( ResourceID_t resID, UInt16 index, 00037 char *s0, char *s1, char *s2, char *s3); 00038 00044 #define MTxtFreeParamString( p ) MMemFreeHandleFromLockedPtr( p ) 00045 00046 #ifdef __cplusplus 00047 } 00048 #endif 00049 00050 #endif