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.
42 lines
902 B
42 lines
902 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1998
|
|
//
|
|
// File: dmchordmapobj.cpp
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
// dmPerformanceObj.cpp
|
|
|
|
#include "dmusici.h"
|
|
#include "dmusicc.h"
|
|
#include "dmusicf.h"
|
|
|
|
#include "stdafx.h"
|
|
#include "Direct.h"
|
|
|
|
#include "dms.h"
|
|
#include "dmChordMapObj.h"
|
|
|
|
|
|
extern void *g_dxj_DirectMusicSegment;
|
|
extern void *g_dxj_DirectMusicChordMap;
|
|
|
|
extern HRESULT BSTRtoGUID(LPGUID,BSTR);
|
|
|
|
CONSTRUCTOR(_dxj_DirectMusicChordMap, {});
|
|
DESTRUCTOR(_dxj_DirectMusicChordMap, {});
|
|
GETSET_OBJECT(_dxj_DirectMusicChordMap);
|
|
|
|
|
|
|
|
|
|
HRESULT C_dxj_DirectMusicChordMapObject::getScale(long *scale)
|
|
{
|
|
HRESULT hr;
|
|
hr=m__dxj_DirectMusicChordMap->GetScale((DWORD*)scale);
|
|
return hr;
|
|
}
|
|
|