summaryrefslogtreecommitdiffstats
path: root/media/tools/player_wtl/player_wtl.h
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-25 18:43:53 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-25 18:43:53 +0000
commit6e7c24ee5cd7ce88266ceae158c31c62d7498d3f (patch)
tree7fe0d691192959f1a31095aa35dc5efb147f88c8 /media/tools/player_wtl/player_wtl.h
parenta999b0e58e1ca80435c7322df5cb229b64be113f (diff)
downloadchromium_src-6e7c24ee5cd7ce88266ceae158c31c62d7498d3f.zip
chromium_src-6e7c24ee5cd7ce88266ceae158c31c62d7498d3f.tar.gz
chromium_src-6e7c24ee5cd7ce88266ceae158c31c62d7498d3f.tar.bz2
Re-organizing all tools under /src/media to be consistent with the rest of the repository.
TEST=n/a BUG=n/a Review URL: http://codereview.chromium.org/431046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33089 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/tools/player_wtl/player_wtl.h')
-rw-r--r--media/tools/player_wtl/player_wtl.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/media/tools/player_wtl/player_wtl.h b/media/tools/player_wtl/player_wtl.h
new file mode 100644
index 0000000..96a866c
--- /dev/null
+++ b/media/tools/player_wtl/player_wtl.h
@@ -0,0 +1,28 @@
+// 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.
+
+// Stand alone media player application used for testing the media library.
+
+#ifndef MEDIA_TOOLS_PLAYER_WTL_PLAYER_WTL_H_
+#define MEDIA_TOOLS_PLAYER_WTL_PLAYER_WTL_H_
+
+// Enable timing code by turning on TESTING macro.
+//#define TESTING 1
+
+// ATL and WTL require order dependent includes.
+#include <atlbase.h> // NOLINT
+#include <atlapp.h> // NOLINT
+#include <atlcrack.h> // NOLINT
+#include <atlctrls.h> // NOLINT
+#include <atlctrlw.h> // NOLINT
+#include <atldlgs.h> // NOLINT
+#include <atlframe.h> // NOLINT
+#include <atlmisc.h> // NOLINT
+#include <atlscrl.h> // NOLINT
+#include <winspool.h> // NOLINT
+#include <atlprint.h> // NOLINT
+
+extern CAppModule g_module;
+
+#endif // MEDIA_TOOLS_PLAYER_WTL_PLAYER_WTL_H_