Dopo aver installato l'sdk di lightwave ed il Ms VC++ 6.0 inizio a fare qullo che dice la guida...cioè creare le librerie per la creazione delle mie plug-in...insomma mi devo configurare il mio ambiente di lavoro......mà

questa è la guida

Microsoft Visual C++


To build an MSVC version of the SDK library,
  • Create a new project workspace, or insert a new project into an existing workspace. The project type should be "Static Library." Name the project "server".
  • Settings dialog, C/C++ tab, add _X86_ (or _ALPHA_) and _WIN32 to the preprocessor definitions field.
  • In the field for additional include directories, type the path to the plug-in SDK include directory.
  • Add servdesc.c, username.c, startup.c, and shutdown.c to the project. These are located in the SDK\source directory.
  • Build server.lib.
fin qui tutto bene server.lib nessun problema me l'ha compilata ^

mentre quello che segue mi da problemi...+ che altro perchè non conosco bene l'ambiente di lavoro di msvc++


To create a plug-in,
  • Create a new project workspace, or insert a new project into an existing workspace. The project type should be "Dynamic-Link Library."
  • Settings dialog, C/C++ tab, add _X86_ (or _ALPHA_) and _WIN32 to the preprocessor definitions field.
  • In the field for additional include directories, type the path to the plug-in SDK include directory.
  • Add your source files to the project. Also add servmain.c, server.lib and serv.def.
faccio tutto questo (di sopra) ^


Accept the default settings for the calling convention (__cdecl), alignment (8 byte) and runtime library (multithreaded or multithreaded debug, for the release and debug versions, respectively). If you've built both debug and release versions of server.lib (and this is recommended), make sure you list the appropriate one for the debug and release versions of your plug-in.

Qui (sopra) ^ mi avvisa su uno standard da usare o da Impostare (che non so come si fa) e credo che il problema stia proprio qui...infatti il messaggio d'errore è questo :

Deleting intermediate files and output files for project 'PlugSDKLW - Win32 Debug'.
--------------------Configuration: PlugSDKLW - Win32 Debug--------------------
Compiling...
username.c
servdesc.c
servmain.c
shutdown.c
startup.c
Linking...
Creating library Debug/PlugSDKLW.lib and object Debug/PlugSDKLW.exp
servdesc.obj : error LNK2001: unresolved external symbol _Activate
servdesc.obj : error LNK2001: unresolved external symbol _ServerName
servdesc.obj : error LNK2001: unresolved external symbol _ServerClass
Debug/PlugSDKLW.dll : fatal error LNK1120: 3 unresolved externals
Error executing link.exe.
PlugSDKLW.dll - 4 error(s), 0 warning(s)

Qulacuno sa dirmi come fare?, o potrebbe tradurlo in inglese e postarlo sul forum di newtek o spinquad

Grazie.