git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15211 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
61a0f9743e
commit
115fe48c76
|
@ -100,13 +100,13 @@ struct __base_object_vmt {
|
|||
/**
|
||||
* @brief Structure representing a base object class.
|
||||
*/
|
||||
typedef struct base_object {
|
||||
struct base_object {
|
||||
/**
|
||||
* @brief Virtual Methods Table.
|
||||
*/
|
||||
const struct __base_object_vmt *vmt;
|
||||
__base_object_data
|
||||
} base_object_c;
|
||||
};
|
||||
|
||||
/**
|
||||
* @name Methods implementations
|
||||
|
|
|
@ -62,13 +62,13 @@ struct __referenced_object_vmt { \
|
|||
/**
|
||||
* @brief Structure representing a referenced object class.
|
||||
*/
|
||||
typedef struct referenced_object {
|
||||
struct referenced_object {
|
||||
/**
|
||||
* @brief Virtual Methods Table.
|
||||
*/
|
||||
const struct __referenced_object_vmt *vmt;
|
||||
__referenced_object_data
|
||||
} referenced_object_c;
|
||||
};
|
||||
|
||||
/**
|
||||
* @name Methods implementations
|
||||
|
|
|
@ -62,13 +62,13 @@ struct __synchronized_object_vmt { \
|
|||
/**
|
||||
* @brief Structure representing a synchronized object class.
|
||||
*/
|
||||
typedef struct synchronized_object {
|
||||
struct synchronized_object {
|
||||
/**
|
||||
* @brief Virtual Methods Table.
|
||||
*/
|
||||
const struct __synchronized_object_vmt *vmt;
|
||||
__synchronized_object_data
|
||||
} synchronized_object_c;
|
||||
};
|
||||
|
||||
/**
|
||||
* @name Methods implementations
|
||||
|
|
Loading…
Reference in New Issue