Ver Mensaje Individual
  #1  
Antiguo 05-10-2011
omarodalis omarodalis is offline
No confirmado
NULL
 
Registrado: oct 2011
Posts: 15
Reputación: 0
omarodalis Va por buen camino
Unhappy Conectar DLP USB 245

Discilpen amigos.. tengo un problema y les agradecería su ayuda... Estoy realizando un programa en c++ builder 2010 para conectar un DLP USB 245, estoy utilizando el FTDI para ello incluyendo FTD2XX.H, FTD2XX.DLL y FTD2XX.LIB, en mi proyecto ahi tengo todos estos elementos, (.h, .dll, .lib) en mi programa tengo lo siguiente:
#include <vcl.h>
#pragma hdrstop
#include "ConectarDLP.h"//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
#include "ftd2xx.h"
#include <stdio.h>
TForm1 *Form1;
__fastcall TForm1::TForm1(TComponent* Owner): TForm(Owner)
{
}
void __fastcall TForm1::Button1Click(TObject *Sender)
{
FT_STATUS Status;
DWORD numDevs;
Status = FT_ListDevices (&numDevs, NULL, FT_LIST_NUMBER_ONLY); ///
}
Y al compilar me sale este error:
[ILINK32 Error] Error: Unresolved external 'FT_ListDevices' referenced from C:\USERS\NAILA\CONEXIONDLP\DEBUG\CONECTARDLP.OBJ
Como se darán cuenta en mi clase yo incluyo a ftd2xx.h.. include "ftd2xx.h" .. ¿Como puedo solucionar esto? he buscado pero no encuentro la solucion por ello acudo a ustedes.. porfas necesito una ayudota.. saludos ... mi correo omar_1314@hotmail.com....
Responder Con Cita