Microsoft DirectX 8.1 (C++) |
The LoadObjectFromFile method retrieves the specified object from a file and returns the desired interface. This method can be used instead of IDirectMusicLoader8::GetObject when the object is in a file.
Syntax
HRESULT LoadObjectFromFile(
REFGUID rguidClassID,
REFIID iidInterfaceID,
WCHAR *pwzFilePath,
void ** ppObject
);
Parameters
rguidClassID
Unique identifier for the class of object. For a list of standard loadable classes, see IDirectMusicLoader8.
iidInterfaceID
Unique identifier of the interface. See DirectMusic Interface GUIDs.
pwzFilePath
Name of the file that contains the object. The path can be fully qualified or relative to the search directory. See Remarks.
ppObject
Address of a variable that receives a pointer to the desired interface of the object.
Return Values
If the method succeeds, the return value is S_OK or DMUS_S_PARTIALLOAD.
If it fails, the method can return one of the error values shown in the following table.
Return code |
DMUS_E_LOADER_FAILEDCREATE |
DMUS_E_LOADER_FAILEDOPEN |
DMUS_E_LOADER_FORMATNOTSUPPORTED |
DMUS_E_LOADER_NOCLASSID |
E_FAIL |
E_INVALIDARG |
E_OUTOFMEMORY |
E_POINTER |
REGDB_E_CLASSNOTREG |
Remarks
When pwzFilePath is an unqualified file name or a relative path, the loader searches first in the current directory, then in the Windows search path, and finally in the directory set by the last call to IDirectMusicLoader8::SetSearchDirectory.
DMUS_S_PARTIALLOAD is returned if any referenced object cannot be found, such as a
Requirements
Header: Declared in dmusici.h.
See Also