From b1f495c26aa6753b608126dad195d0bd13ca3d9c Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Fri, 30 Oct 2020 02:02:26 +0000 Subject: [PATCH] Add "struct" to typedefs. This is more C-like. From https://github.com/OpenNI/OpenNI2/pull/62 Signed-off-by: Chris Lalancette --- Include/OniCTypes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Include/OniCTypes.h b/Include/OniCTypes.h index 122469495..076915b0e 100644 --- a/Include/OniCTypes.h +++ b/Include/OniCTypes.h @@ -83,13 +83,13 @@ typedef struct } OniDeviceInfo; struct _OniDevice; -typedef _OniDevice* OniDeviceHandle; +typedef struct _OniDevice* OniDeviceHandle; struct _OniStream; -typedef _OniStream* OniStreamHandle; +typedef struct _OniStream* OniStreamHandle; struct _OniRecorder; -typedef _OniRecorder* OniRecorderHandle; +typedef struct _OniRecorder* OniRecorderHandle; /** All information of the current frame */ typedef struct