GUIdocs changed

update msg_hdr struct
This commit is contained in:
Marek Marczykowski-Górecki 2013-10-21 17:35:57 +00:00
parent 29111c1ab9
commit 9e7229321a

View File

@ -103,6 +103,12 @@ Each message starts with the following header
struct msghdr {
uint32_t type;
uint32_t window;
/* This field is intended for use by gui_agents to skip unknown
* messages from the (trusted) guid. Guid, on the other hand,
* should never rely on this field to calculate the actual len of
* message to be read, as the (untrusted) agent can put here
* whatever it wants! */
uint32_t untrusted_len;
};
```