mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 18:55:19 +00:00 
			
		
		
		
	ast_channel_datastore_alloc is no longer used. updating datastores.txt to reflect that.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@201453 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -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); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user