• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2011 Joakim Sindholt <opensource@zhasha.com>
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