master
 1/*
 2 * atsmedia.h
 3 *
 4 * Contributors:
 5 *   Created by Magnus Olsen.
 6 *
 7 * THIS SOFTWARE IS NOT COPYRIGHTED
 8 *
 9 * This source code is offered for use in the public domain. You may
10 * use, modify or distribute it freely.
11 *
12 * This code is distributed in the hope that it will be useful but
13 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
14 * DISCLAIMED. This includes but is not limited to warranties of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 *
17 */
18
19#include <winapifamily.h>
20
21#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
22
23#pragma once
24
25#ifndef _ATSCMEDIA_
26#define _ATSCMEDIA_
27
28#include <bdamedia.h>
29
30#define BDANETWORKTYPE_ATSC DEFINE_GUIDNAMED(BDANETWORKTYPE_ATSC)
31#define STATIC_BDANETWORKTYPE_ATSC						\
32	0x71985F51, 0x1CA1, 0x11D3, 0x9C, 0xC8, 0x0, 0xC0, 0x4F, 0x79, 0x71, 0xE0
33DEFINE_GUIDSTRUCT("71985F51-1CA1-11D3-9CC8-00C04F7971E0", BDANETWORKTYPE_ATSC);
34
35#endif /* _ATSCMEDIA_ */
36
37#endif /* Desktop partition.  */