diff options
Diffstat (limited to 'media/player/player_wtl.h')
-rw-r--r-- | media/player/player_wtl.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media/player/player_wtl.h b/media/player/player_wtl.h new file mode 100644 index 0000000..d25e7e8 --- /dev/null +++ b/media/player/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_PLAYER_PLAYER_WTL_H_ +#define MEDIA_PLAYER_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_PLAYER_PLAYER_WTL_H_ |