summaryrefslogtreecommitdiffstats
path: root/media/player/stdafx.h
blob: a82c783d38c3f25039f3b60ce120983c87595440 (plain)
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
// Copyright (c) 2009 The Chromium Authors. All rights reserved.  Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.

// stdafx.h : Include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently.
// This file is in Microsoft coding style.

#ifndef MEDIA_PLAYER_STDAFX_H_
#define MEDIA_PLAYER_STDAFX_H_

// Change these values to use different versions.
#define _RICHEDIT_VER  0x0100

#pragma warning(disable: 4996)
// warning C4996: '_vswprintf': This function or variable may be unsafe.
// Consider using vswprintf_s instead. To disable deprecation,
// use _CRT_SECURE_NO_WARNINGS. See online help for details.

#include <atlbase.h>
#include <atlapp.h>

extern CAppModule g_module;

#include <atlwin.h>

#endif  // MEDIA_PLAYER_STDAFX_H_