File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -1555,6 +1555,27 @@ typedef const char* LPCSTR;
1555
1555
DLL_API LPCSTR TakeTypedefedMappedType (LPCSTR string);
1556
1556
DLL_API std::string UTF8;
1557
1557
1558
+ typedef enum SE4IpAddr_Tag {
1559
+ V4,
1560
+ V6,
1561
+ } SE4IpAddr_Tag;
1562
+
1563
+ typedef struct {
1564
+ uint8_t _0[4 ];
1565
+ } SE4V4_Body;
1566
+
1567
+ typedef struct {
1568
+ uint8_t _0[16 ];
1569
+ } SE4V6_Body;
1570
+
1571
+ typedef struct {
1572
+ SE4IpAddr_Tag tag;
1573
+ union {
1574
+ SE4V4_Body v4;
1575
+ SE4V6_Body v6;
1576
+ };
1577
+ } SE4IpAddr;
1578
+
1558
1579
struct DLL_API StructWithCopyCtor
1559
1580
{
1560
1581
StructWithCopyCtor ();
@@ -1619,4 +1640,4 @@ void DLL_API PointerToTypedefPointerTestMethod(LPPointerToTypedefPointerTest* lp
1619
1640
1620
1641
typedef int *LPINT;
1621
1642
1622
- void DLL_API PointerToPrimitiveTypedefPointerTestMethod (LPINT lp, int valToSet);
1643
+ void DLL_API PointerToPrimitiveTypedefPointerTestMethod (LPINT lp, int valToSet);
You can’t perform that action at this time.
0 commit comments