xref: /aosp_15_r20/external/mesa3d/src/gallium/frontends/nine/guid.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright 2011 Joakim Sindholt <[email protected]>
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef _NINE_GUID_H_
7 #define _NINE_GUID_H_
8 
9 #include "util/compiler.h"
10 
11 #include "d3d9types.h"
12 
13 extern const GUID IID_ID3D9Adapter;
14 
15 bool
16 GUID_equal( const GUID *a,
17             const GUID *b );
18 
19 char*
20 GUID_sprintf( char *guid_str,
21               REFGUID id );
22 
23 #endif /* _NINE_GUID_H_ */
24