Changeset 1358 for trunk/src/rasapi32/rasapi32.cpp
- Timestamp:
- Oct 19, 1999, 2:55:05 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/rasapi32/rasapi32.cpp
r1012 r1358 1 /* $Id: rasapi32.cpp,v 1. 2 1999-09-23 09:38:06sandervl Exp $ */1 /* $Id: rasapi32.cpp,v 1.3 1999-10-19 12:55:05 sandervl Exp $ */ 2 2 /* 3 3 * RASAPI32 … … 45 45 46 46 /************************************************************************** 47 * RasValidateEntryName [RASAPI32.552] 48 */ 49 DWORD APIENTRY RasValidateEntryName(LPCTSTR lpszPhonebook, LPCTSTR lpszEntry) 50 { 51 #ifdef DEBUG 52 dprintf(("RASAPI32: RasValidateEntryName not implemented\n")); 53 #endif 54 return 0; 55 } 56 57 58 /************************************************************************** 59 * RasRenameEntry [RASAPI32.553] 60 */ 61 DWORD APIENTRY RasRenameEntry(LPCTSTR lpszPhonebook, LPCTSTR lpszOldEntry, LPCTSTR lpszNewEntry) 62 { 63 #ifdef DEBUG 64 dprintf(("RASAPI32: RasRenameEntry not implemented\n")); 65 #endif 66 return 0; 67 } 68 69 70 /************************************************************************** 71 * RasDeleteEntry [RASAPI32.554] 72 */ 73 DWORD APIENTRY RasDeleteEntry(LPCTSTR lpszPhonebook, LPCTSTR lpszEntry) 74 { 75 #ifdef DEBUG 76 dprintf(("RASAPI32: RasDeleteEntry not implemented\n")); 77 #endif 78 return 0; 79 } 80 81 82 /************************************************************************** 83 * RasGetEntryProperties [RASAPI32.555] 84 */ 85 DWORD APIENTRY RasGetEntryProperties(LPCTSTR lpszPhonebook, LPCTSTR lpszEntry, 86 LPRASENTRY lpRasEntry, LPDWORD lpdwEntryInfoSize, 87 LPBYTE lpbDeviceInfo, LPDWORD lpdwDeviceInfoSize) 88 { 89 #ifdef DEBUG 90 dprintf(("RASAPI32: RasGetEntryProperties not implemented\n")); 91 #endif 92 return 0; 93 } 94 95 96 /************************************************************************** 97 * RasSetEntryProperties [RASAPI32.556] 98 */ 99 DWORD APIENTRY RasSetEntryProperties(LPCTSTR lpszPhonebook, LPCTSTR lpszEntry, 100 LPRASENTRY lpRasEntry, DWORD dwEntryInfoSize, 101 LPBYTE lpbDeviceInfo, DWORD dwDeviceInfoSize) 102 { 103 #ifdef DEBUG 104 dprintf(("RASAPI32: RasSetEntryProperties not implemented\n")); 105 #endif 106 return 0; 107 } 108 109 110 /************************************************************************** 111 * RasEnumDevices [RASAPI32.557] 112 */ 113 DWORD APIENTRY RasEnumDevices(LPRASDEVINFO lpRasDevInfo, 114 LPDWORD lpcb, LPDWORD lpcDevices) 115 { 116 #ifdef DEBUG 117 dprintf(("RASAPI32: RasEnumDevices not implemented\n")); 118 #endif 119 return 0; 120 } 121 122 123 /************************************************************************** 124 * RasGetCountryInfo [RASAPI32.558] 125 */ 126 DWORD APIENTRY RasGetCountryInfo( LPRASCTRYINFO lpRasCtryInfo, LPDWORD lpdwSize) 127 { 128 #ifdef DEBUG 129 dprintf(("RASAPI32: RasGetCountryInfo not implemented\n")); 130 #endif 131 return 0; 132 } 133 134 135 /************************************************************************** 47 136 * RasCreatePhonebookEntryA [RASAPI32.559] 48 137 */ … … 313 402 314 403 /************************************************************************** 404 * RnaCloseMac [RASAPI32.581] 405 */ 406 DWORD WINAPI RnaCloseMac(HANDLE hConn) 407 { 408 #ifdef DEBUG 409 dprintf(("RASAPI32: RnaCloseMac not implemented\n")); 410 #endif 411 return 0; 412 } 413 414 415 /************************************************************************** 416 * RnaComplete [RASAPI32.582] 417 */ 418 /* DWORD APIENTRY RnaComplete(HANDLE hConn, LPCOMPLETE_INFO lpci, LPPROJECTION_INFO lppi, DWORD cEntries) 419 { 420 #ifdef DEBUG 421 dprintf(("RASAPI32: RnaComplete not implemented\n")); 422 #endif 423 return 0; 424 } */ 425 426 427 /************************************************************************** 428 * RnaGetDevicePort [RASAPI32.583] 429 */ 430 /* DWORD WINAPI RnaGetDevicePort(HANDLE hConn, LPDEVICE_PORT_INFO lpdpi) 431 { 432 #ifdef DEBUG 433 dprintf(("RASAPI32: RnaGetDevicePort not implemented\n")); 434 #endif 435 return 0; 436 } */ 437 438 439 /************************************************************************** 440 * RnaGetUserProfile [RASAPI32.585] 441 */ 442 /* DWORD WINAPI RnaGetUserProfile(HANDLE hConn, LPUSER_PROFILE lpUserProfile) 443 { 444 #ifdef DEBUG 445 dprintf(("RASAPI32: RnaGetUserProfile not implemented\n")); 446 #endif 447 return 0; 448 } */ 449 450 451 /************************************************************************** 452 * RnaOpenMac [RASAPI32.586] 453 */ 454 /* DWORD WINAPI RnaOpenMac(HANDLE hConn, HANDLE * lphMAC, LPMAC_OPEN lpmo, DWORD dwSize, HANDLE hEvent) 455 { 456 #ifdef DEBUG 457 dprintf(("RASAPI32: RnaOpenMac not implemented\n")); 458 #endif 459 return 0; 460 } */ 461 462 463 /************************************************************************** 464 * RnaSessInitialize [RASAPI32.587] 465 */ 466 /* DWORD APIENTRY RnaSessInitialize(LPSTR lpszType, LPRNA_FUNCS lpRnaFuncs) 467 { 468 #ifdef DEBUG 469 dprintf(("RASAPI32: RnaSessInitialize not implemented\n")); 470 #endif 471 return 0; 472 } */ 473 474 475 /************************************************************************** 476 * RnaStartCallback [RASAPI32.588] 477 */ 478 DWORD APIENTRY RnaStartCallback(HANDLE hConn, HANDLE hEvent) 479 { 480 #ifdef DEBUG 481 dprintf(("RASAPI32: RnaStartCallback not implemented\n")); 482 #endif 483 return 0; 484 } 485 486 487 /************************************************************************** 488 * RnaTerminate [RASAPI32.589] 489 */ 490 DWORD APIENTRY RnaTerminate(HANDLE hConn, HANDLE hThread) 491 { 492 #ifdef DEBUG 493 dprintf(("RASAPI32: RnaTerminate not implemented\n")); 494 #endif 495 return 0; 496 } 497 498 499 /************************************************************************** 500 * RnaUICallbackDialog [RASAPI32.590] 501 */ 502 DWORD WINAPI RnaUICallbackDialog(HANDLE hConn, LPSTR lpszLocList, DWORD dwType, BOOL fOptional, LPINT lpuIndex, LPSTR lpszSelectLocation, UINT cbBuff) 503 { 504 #ifdef DEBUG 505 dprintf(("RASAPI32: RnaUICallbackDialog not implemented\n")); 506 #endif 507 return 0; 508 } 509 510 511 /************************************************************************** 512 * RnaUIUsernamePassword [RASAPI32.591] 513 */ 514 DWORD WINAPI RnaUIUsernamePassword(HANDLE hConn, LPSTR lpszUsername, UINT cbUsername, LPSTR lpszPassword, UINT cbPassword, LPSTR lpszDomain, UINT cbDomain) 515 { 516 #ifdef DEBUG 517 dprintf(("RASAPI32: RnaUIUsernamePassword not implemented\n")); 518 #endif 519 return 0; 520 } 521 522 523 /************************************************************************** 315 524 * RasValidateEntryNameA [RASAPI32.612] 316 525 */
Note:
See TracChangeset
for help on using the changeset viewer.