Can a WinAPI UUID
be changed after its been assigned? Can a Linux uuid_t
be changed after its been assigned?
For example (example relating to UUID
but the same question for uuid_t
):
class Component
{
public:
UUID id; // considering whether to make this public or not
Component()
{
UuidCreate(&id);
}
};
Component c;
UuidCreate(c.id); // can it be changed after already being assigned? Is it constant?