efl/legacy/eobj/examples/access/simple_protected.h

13 lines
177 B
C

#ifndef SIMPLE_PROTECTED_H
#define SIMPLE_PROTECTED_H
#include "simple.h"
typedef struct
{
Simple_Public_Data public;
int protected_x1;
} Simple_Protected_Data;
#endif