summaryrefslogtreecommitdiff
path: root/include_protected
diff options
context:
space:
mode:
authorIngo Huerner <ingo.huerner@xse.de>2013-01-08 14:35:36 +0100
committerIngo Huerner <ingo.huerner@xse.de>2013-01-08 14:35:36 +0100
commitfc4d54c73fbb292b6e4700ff772a355d09ca0ff9 (patch)
treec40580fa0e7aec703f930f368421f02942021468 /include_protected
parentb7250822718b2e91e00d06bc96da728814699db4 (diff)
downloadpersistence-client-library-fc4d54c73fbb292b6e4700ff772a355d09ca0ff9.tar.gz
changed datatype of ldbid, user_no and deat_no form unsigned char to unsigned int; changed resource_id datatype form char* to const char*
Diffstat (limited to 'include_protected')
-rw-r--r--include_protected/persistence_client_library_rc_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include_protected/persistence_client_library_rc_table.h b/include_protected/persistence_client_library_rc_table.h
index 1ec8731..7ea58d3 100644
--- a/include_protected/persistence_client_library_rc_table.h
+++ b/include_protected/persistence_client_library_rc_table.h
@@ -57,9 +57,9 @@ typedef enum _PersistenceStorage_e
/// structure used to manage database context
typedef struct _PersistenceDbContext_s
{
- unsigned char ldbid;
- unsigned char user_no;
- unsigned char seat_no;
+ unsigned int ldbid;
+ unsigned int user_no;
+ unsigned int seat_no;
} PersistenceDbContext_s;