aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-17 20:01:40 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-17 20:01:40 +0000
commit5806388e24bd3433d87d3636e8b456d569f367bd (patch)
tree1d7b04a8bf2962ea99a9a357d6a11c8d28c5c32b /doc
parent8571f05a78ad591b2a3ce68db14e796fded9c864 (diff)
Merged revisions 201453 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r201453 | dvossel | 2009-06-17 15:00:51 -0500 (Wed, 17 Jun 2009) | 3 lines ast_channel_datastore_alloc is no longer used. updating datastores.txt to reflect that. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@201456 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/datastores.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/datastores.txt b/doc/datastores.txt
index 64b5d35cc..c48c07061 100644
--- a/doc/datastores.txt
+++ b/doc/datastores.txt
@@ -19,8 +19,8 @@ This is a needed structure that contains information about a datastore, it's use
* How do you create a data store?
-1. Use ast_channel_datastore_alloc function to return a pre-allocated structure
- Ex: datastore = ast_channel_datastore_alloc(&example_datastore, "uid");
+1. Use ast_datastore_alloc function to return a pre-allocated structure
+ Ex: datastore = ast_datastore_alloc(&example_datastore, "uid");
This function takes two arguments: (datastore info structure, uid)
2. Attach data to pre-allocated structure.
Ex: datastore->data = mysillydata;
@@ -36,7 +36,7 @@ void callback_destroy(void *data)
}
struct ast_datastore *datastore = NULL;
-datastore = ast_channel_datastore_alloc(&example_datastore, NULL);
+datastore = ast_datastore_alloc(&example_datastore, NULL);
datastore->data = mysillydata;
ast_channel_datastore_add(chan, datastore);