manoj marathayil: > if i am static building the scintilla with my project whether > i want to perform; > Scintilla_RegisterClasses ( NULL ); > if i did this it is throwing an error like ; > error LNK2019: unresolved external symbol "bool __cdecl > Scintilla_RegisterClasses(void *)" (? > Scintilla_RegisterClasses@@[EMAIL PROTECTED]) referenced in > function > [EMAIL PROTECTED]; > With out Scintilla_RegisterClasses ( NULL ) when i tried to > create the controll it is failing. > what i am missing?
The symbol goes into the map as ?Scintilla_RegisterClasses@@[EMAIL PROTECTED] The initial '?' is probably a C versus C++ linkage issue. SciTE uses this call in STATIC_BUILD mode so it does work. Neil _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
