summaryrefslogtreecommitdiffstats
path: root/private/rpc/runtime/uuid/uuid16.h
blob: edf0868d0a3225d4575ce8255533a684ab271d14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*++

Copyright (c) 1991 Microsoft Corporation

Module Name:

    uuid.h

Abstract:

    This file contains the entry points for the uuid routines.

Author:

    Michael Montague (mikemon) 22-Jan-1992

Revision History:

--*/

#ifndef __UUID_H__
#define __UUID_H__


#ifdef __cplusplus
extern "C" {
#endif

#define UUID_S_OK 0
#define UUID_S_NO_ADDRESS 1

#ifndef NTENV
typedef struct _UuidGetValuesStruct
{
    unsigned long   NextTimeLow;
    unsigned long   LastTimeLow;
    unsigned long   TimeHigh;
    unsigned short  ClockSequence;
    unsigned char   NodeId[6];
} UUID_GET_VALUES_STRUCT, PAPI *PUUID_GET_VALUES_STRUCT;
    
    
    
RPC_STATUS RPC_ENTRY
UuidGetValues (
    PUUID_GET_VALUES_STRUCT pUuidGetValuesStruct
    );
#endif

#ifdef __cplusplus
}
#endif
#endif /* __UUID_H__ */