mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
git-svn-id: https://cxbx.svn.sourceforge.net/svnroot/cxbx/branches/private/shogun/wip@153 587435c2-1f12-0410-b34b-ee784db558a2
20 lines
640 B
C
20 lines
640 B
C
//------------------------------------------------------------------------------
|
|
// File: MediaErr.h
|
|
//
|
|
// Desc: Shell error codes
|
|
//
|
|
// Copyright (c) 1999 - 2000, Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
#ifndef _MEDIAERR_H_
|
|
#define _MEDIAERR_H_
|
|
|
|
#define DMO_E_INVALIDSTREAMINDEX 0x80040201
|
|
#define DMO_E_INVALIDTYPE 0x80040202
|
|
#define DMO_E_TYPE_NOT_SET 0x80040203
|
|
#define DMO_E_NOTACCEPTING 0x80040204
|
|
#define DMO_E_TYPE_NOT_ACCEPTED 0x80040205
|
|
#define DMO_E_NO_MORE_ITEMS 0x80040206
|
|
|
|
#endif _MEDIAERR_H_
|