Private
Public Access
2
0

maa.i: add typemaps for uint8_t and uint8_t*

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-06-13 17:53:21 +01:00
parent 4a0c76c1a0
commit 93acdf3789

View File

@@ -52,6 +52,8 @@ typedef enum {
} maa_result_t;
%typemap(in) unsigned char* = char*;
%typemap(in) uint8_t* = char*;
%typemap(in) uint8_t = char;
#### GPIO ####