| Hi,
Michael Gogins suggested:
>Just above where it says "#include put:
>
>#ifdef AXCSOUND // Or whatever...
>#define __RPCASYNC_H__
>#endif
This solved one batch of errors but now there are more.
Since uggab.h could not be found and control.h generated >100 errors I
commented them out:
// #include "uggab.h"
// #ifdef CWIN
// #include "control.h"
// #endif
Here is the next set of errors:
d:\csound\entry.c(791) : error C2065: 'WRAP' : undeclared identifier
d:\csound\entry.c(795) : error C2065: 'INTERPOL' : undeclared identifier
d:\csound\entry.c(798) : error C2065: 'TRIG' : undeclared identifier
d:\csound\entry.c(803) : error C2065: 'CNTRL' : undeclared identifier
d:\csound\entry.c(804) : error C2065: 'SCNTRL' : undeclared identifier
I commented out the mirror, wrap, ntrpol, control, cdisplay & trigger
opcodes from entry.c. This gets it as far as:
d:\csound\cwin.cpp(3391) : fatal error C1083: Cannot open include file:
'CSliders.h': No such file or directory
I commented out the slider code in CWIN.CPP Now I get:
d:\csound\cwin.cpp(3807) : error C2666: '!=' : 2 overloads have similar
conversions
if (xxx.m_midiselector!=NULL && xxx.m_midiselector.GetCount()>0) {
if (xxx.m_midiselector.GetCurSel()!=0) { // If realtime midi
I don't see what would be ambiguous with this but I'll comment it out
anyway. Additional space and parens did not seem to help.
This gets me to linking with the following errors:
Linking...
ENTRY.OBJ : error LNK2001: unresolved external symbol _lowpr_w_sep
ENTRY.OBJ : error LNK2001: unresolved external symbol _lowpr_w_sep_set
ENTRY.OBJ : error LNK2001: unresolved external symbol _lowprx
ENTRY.OBJ : error LNK2001: unresolved external symbol _lowpr_setx
ENTRY.OBJ : error LNK2001: unresolved external symbol _lowpr
ENTRY.OBJ : error LNK2001: unresolved external symbol _lowpr_set
CWIN.OBJ : error LNK2001: unresolved external symbol "protected: void
__thiscall CArg::OnSliders(void)" (?OnSliders@CArg@@IAEXXZ)
.\WinDebug/winsound.exe : fatal error LNK1120: 7 unresolved externals
Error executing link.exe.
I guess I'll stop for now.
Thanks for any help,
Hans Mikelson |