000
29.12.2003, 14:56 Uhr
~Daniel
Gast
|
Hi,
Ich hab da ein kleines nervendes Problem RasGetConnectionStatistics. Ich hab die rasapi32.lib eingebunden und auch ras.h included aber aus irgendeinem seltsamen grund bekomme ich immer den folgenden fehler:
error C2065: 'RasGetConnectionStatistics' : nichtdeklarierter Bezeichner
hier der codeausschnitt:
C++: |
RAS_STATS *lpStatistics; lpStatistics = (RAS_STATS *)GlobalAlloc(GPTR, sizeof(RAS_STATS)); lpStatistics->dwSize = sizeof(RAS_STATS); if(lpRasConn->hrasconn) { SetDlgItemText(IDC_CONNECTED_TO,lpRasConn->szEntryName); DWORD nRet = RasGetConnectionStatistics(lpRasConn->hrasconn,lpStatistics);
if(nRet == ERROR_SUCCESS) { sBytesSent.Format("%d",lpStatistics->dwBytesXmited); SetDlgItemText(IDC_BYTES_SENT,sBytesSent); }
|
Hat vielleicht jemand eine idee was ich falsch mache?? |