mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.1 KiB
19 lines
1.1 KiB
// Copyright (c) 1998 Microsoft Corporation
|
|
// Error.h
|
|
|
|
#define RA_E_FIRST (OLE_E_FIRST + 5000)
|
|
|
|
#define E_BADWAVE (RA_E_FIRST + 1) // Bad wave chunk
|
|
#define E_NOTPCM (RA_E_FIRST + 2) // Not PCM data in wave
|
|
#define E_NOTMONO (RA_E_FIRST + 3) // Wave not MONO
|
|
#define E_BADARTICULATION (RA_E_FIRST + 4) // Bad articulation chunk
|
|
#define E_BADREGION (RA_E_FIRST + 5) // Bad region chunk
|
|
#define E_BADWAVELINK (RA_E_FIRST + 6) // Bad link from region to wave
|
|
#define E_BADINSTRUMENT (RA_E_FIRST + 7) // Bad instrument chunk
|
|
#define E_NOARTICULATION (RA_E_FIRST + 8) // No articulation found in region
|
|
#define E_NOWAVE (RA_E_FIRST + 9) // No wave found for region.
|
|
#define E_BADCOLLECTION (RA_E_FIRST + 10) // Bad collection chunk.
|
|
#define E_NOLOADER (RA_E_FIRST + 11) // No IRALoader interface
|
|
#define E_NOLOCK (RA_E_FIRST + 12) // Unable to lock a region.
|
|
#define E_TOOBUSY (RA_E_FIRST + 13) // RActive to busy to fully follow command.
|
|
|