blob: 361dd5e7ced082bd0125c05a0b620596a0ff7171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright 2011 Joakim Sindholt <opensource@zhasha.com>
* SPDX-License-Identifier: MIT
*/
#ifndef _NINE_GUID_H_
#define _NINE_GUID_H_
#include "util/compiler.h"
#include "d3d9types.h"
extern const GUID IID_ID3D9Adapter;
bool
GUID_equal( const GUID *a,
const GUID *b );
char*
GUID_sprintf( char *guid_str,
REFGUID id );
#endif /* _NINE_GUID_H_ */
|