Commit 952e13c1 authored by John K. Hohm's avatar John K. Hohm Committed by Alexandre Julliard

Implement DllRegisterServer and DllUnregisterServer for dmusic.dll,

and add OleSelfRegister version string.
parent 7120b6ea
......@@ -21,7 +21,8 @@ C_SRCS = \
dmusic_segment.c \
dmusic_style.c \
dmusic_synth.c \
helper.c
helper.c \
regsvr.c
RC_SRCS = version.rc
......
......@@ -148,29 +148,3 @@ HRESULT WINAPI DMUSIC_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *pp
WARN("(%p,%p,%p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
return CLASS_E_CLASSNOTAVAILABLE;
}
/******************************************************************
* DllRegisterServer (DMUSIC.3)
*
*
*/
HRESULT WINAPI DMUSIC_DllRegisterServer(void)
{
FIXME("(void): stub\n");
return S_OK;
}
/******************************************************************
* DllUnregisterServer (DMUSIC.4)
*
*
*/
HRESULT WINAPI DMUSIC_DllUnregisterServer(void)
{
FIXME("(void): stub\n");
return S_OK;
}
......@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define WINE_OLESELFREGISTER
#define WINE_FILEDESCRIPTION_STR "Wine DirectMusic"
#define WINE_FILENAME_STR "dmusic.dll"
#define WINE_FILEVERSION 4,8,1,881
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment