Hola:
Estoy programando con .NET 2003 en c++ y Directx9. Estoy creando un objeto DirectDraw y al "compilarlo", en la función DirectDrawCreate me marca:
Proj1 error LNK2001: unresolved external symbol "long __stdcall DirectDrawCreate(struct _GUID *,struct IDirectDraw * *,struct IUnknown *)" (?DirectDrawCreate@@$$J212YGJPAU_GUID@@PAPAUIDirectDraw@@PAUIUnknown@@@Z)
El código que tiene:
HRESULT exito;
LPDIRECTDRAW objetoDirectDraw;
exito=DirectDrawCreate(NULL, &objetoDirectDraw, NULL);
Estuve verificando en diversas páginas pero todos tienen el mismo tipo de declaración ¿Alguien sabe que sucede? Gracias de antemano.