mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
fd4831f1f0
- move some structs out of misc.idl
metze
(This used to be commit b6543a6e30
)
22 lines
325 B
Plaintext
22 lines
325 B
Plaintext
#include "idl_types.h"
|
|
|
|
/*
|
|
miscellaneous IDL structures
|
|
*/
|
|
|
|
interface misc
|
|
{
|
|
typedef [public,noprint,gensize] struct {
|
|
uint32 time_low;
|
|
uint16 time_mid;
|
|
uint16 time_hi_and_version;
|
|
uint8 clock_seq[2];
|
|
uint8 node[6];
|
|
} GUID;
|
|
|
|
typedef [public] struct {
|
|
uint32 handle_type;
|
|
GUID uuid;
|
|
} policy_handle;
|
|
}
|