mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-27 05:31:15 -04:00
c1e7498e84
Signed-off-by: a30054014 <aipeng3@huawei.com>
27 lines
340 B
C
27 lines
340 B
C
// bindgen-flags: --no-layout-tests
|
|
|
|
/**
|
|
* This is Struct
|
|
*/
|
|
typedef struct {
|
|
/**
|
|
* This is field
|
|
*/
|
|
int field;
|
|
} Struct;
|
|
|
|
/**
|
|
* This is AliasToStruct
|
|
*/
|
|
typedef Struct AliasToStruct;
|
|
|
|
/**
|
|
* This is AliasToInt
|
|
*/
|
|
typedef int AliasToInt;
|
|
|
|
/**
|
|
* This is AliasToAliasToInt
|
|
*/
|
|
typedef AliasToInt AliasToAliasToInt;
|