MorePalmOS
A development library for developing Palm OS applications

MoreDataMgr.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 
00025 #ifndef MOREDATAMGR_H
00026 #define MOREDATAMGR_H
00027 
00028 #ifdef __cplusplus
00029 extern "C" {
00030 #endif
00031 
00032 #include "MorePrefix.h"
00033 
00034 #include <DataMgr.h>
00035 
00052 MemHandle MDmQueryRecordByID( DmOpenRef dbP, UInt32 recID, Err* errCode,
00053                 UInt32 *recIdx );
00054 
00078 MemHandle MDmGetRecordByID( DmOpenRef dbP, UInt32 recID, Err* errCode,
00079                 UInt32 *recIdx );
00080 
00091 Err MDmReleaseRecordByID( DmOpenRef dbP, UInt32 recID, Boolean dirty,
00092                 UInt32 *recIdx );
00093 
00094 #ifdef __cplusplus
00095 }
00096 #endif
00097 
00098 #endif

SourceForge.net Logo