diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-29 17:41:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 17:41:58 +0200 |
commit | 2fc31fdfca29753977b36180e6aab9c28e84cddc (patch) | |
tree | 2d77b9f1248f459d0adae43c54eb72f67339300e /modules | |
parent | 27d4e2f09fe76e06e6b4751025acc79d993c61e5 (diff) | |
parent | 0276c2e74a3212a806119bccb659ceb9dcc25a41 (diff) |
Merge pull request #53217 from Faless/ext/fix_pointer_info
Diffstat (limited to 'modules')
-rw-r--r-- | modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml b/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml index 26a4391b83..746fabd6e5 100644 --- a/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml +++ b/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml @@ -49,7 +49,7 @@ </method> <method name="_get_packet" qualifiers="virtual"> <return type="int" /> - <argument index="0" name="r_buffer" type="const void*" /> + <argument index="0" name="r_buffer" type="const uint8_t **" /> <argument index="1" name="r_buffer_size" type="int32_t*" /> <description> </description> @@ -86,7 +86,7 @@ </method> <method name="_put_packet" qualifiers="virtual"> <return type="int" /> - <argument index="0" name="p_buffer" type="const void*" /> + <argument index="0" name="p_buffer" type="const uint8_t*" /> <argument index="1" name="p_buffer_size" type="int" /> <description> </description> |