- Timestamp:
- Nov 4, 1999, 11:56:26 AM (26 years ago)
- Location:
- trunk/src/mpr
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mpr/MPR.CPP
r1589 r1590 1 /* $Id: MPR.CPP,v 1. 5 1999-11-04 10:32:35phaller Exp $ */1 /* $Id: MPR.CPP,v 1.6 1999-11-04 10:55:30 phaller Exp $ */ 2 2 3 3 /* … … 32 32 // RestoreConnectionA0 33 33 // WNetClearConnections 34 // WNetConnectionDialog1A35 // WNetConnectionDialog1W36 34 // WNetConnectionDialog2 37 35 // WNetDirectoryNotifyA 38 36 // WNetDirectoryNotifyW 39 // WNetDisconnectDialog1A40 // WNetDisconnectDialog1W41 37 // WNetDisconnectDialog2 42 38 // WNetFMXEditPerm FileManager Extensions ? … … 52 48 // WNetGetDirectoryTypeW 53 49 // WNetGetHomeDirectoryW NT specific 54 // WNetGetNetworkInformationA55 // WNetGetNetworkInformationW56 50 // WNetGetPropertyTextA 57 51 // WNetGetPropertyTextW 58 // WNetGetProviderNameA59 // WNetGetProviderNameW60 52 // WNetGetSearchDialog 61 53 // WNetLogonNotify … … 438 430 439 431 /***************************************************************************** 432 * The WNetConnectionDialog1 function starts a general browsing 433 * dialog box for connecting to network resources. 434 * Parameters: LPCONNECTDLGSTRUCT lpConnDlgStruct 435 * Variables : 436 * Result : API-Returncode 437 * Remark : 438 * Status : UNTESTED STUB 439 * 440 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 441 *****************************************************************************/ 442 443 ODINFUNCTION1(DWORD, WNetConnectionDialog1A, 444 LPCONNECTDLGSTRUCTA, lpConnDlgStruct) 445 { 446 dprintf(("MPR:WNetConnectionDialog1A not implemented.\n")); 447 return (ERROR_NO_NETWORK); 448 } 449 450 451 /***************************************************************************** 452 * The WNetConnectionDialog1 function starts a general browsing 453 * dialog box for connecting to network resources. 454 * Parameters: LPCONNECTDLGSTRUCT lpConnDlgStruct 455 * Variables : 456 * Result : API-Returncode 457 * Remark : 458 * Status : UNTESTED STUB 459 * 460 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 461 *****************************************************************************/ 462 463 ODINFUNCTION1(DWORD, WNetConnectionDialog1W, 464 LPCONNECTDLGSTRUCTW, lpConnDlgStruct) 465 { 466 dprintf(("MPR:WNetConnectionDialog1W not implemented.\n")); 467 return (ERROR_NO_NETWORK); 468 } 469 470 471 /***************************************************************************** 440 472 * The WNetDisconnectDialog function starts a general browsing 441 473 * dialog box for disconnecting from network resources. … … 455 487 { 456 488 dprintf(("MPR:WNetDisconnectDialog not implemented.\n")); 489 return (ERROR_NO_NETWORK); 490 } 491 492 493 /***************************************************************************** 494 * The WNetDisconnectDialog1 function starts a general browsing 495 * dialog box for disconnecting from network resources. 496 * Parameters: LPDISCDLGSTRUCTA lpDisconnectDlgStruct 497 * Variables : 498 * Result : API-Returncode 499 * Remark : 500 * Status : UNTESTED STUB 501 * 502 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 503 *****************************************************************************/ 504 505 ODINFUNCTION1(DWORD, WNetDisconnectDialog1A, 506 LPDISCDLGSTRUCTA, lpDisconnectDlgStruct) 507 { 508 dprintf(("MPR:WNetDisconnectDialog1A not implemented.\n")); 509 return (ERROR_NO_NETWORK); 510 } 511 512 513 /***************************************************************************** 514 * The WNetDisconnectDialog1 function starts a general browsing 515 * dialog box for disconnecting from network resources. 516 * Parameters: LPDISCDLGSTRUCTW lpDisconnectDlgStruct 517 * Variables : 518 * Result : API-Returncode 519 * Remark : 520 * Status : UNTESTED STUB 521 * 522 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 523 *****************************************************************************/ 524 525 ODINFUNCTION1(DWORD, WNetDisconnectDialog1W, 526 LPDISCDLGSTRUCTW, lpDisconnectDlgStruct) 527 { 528 dprintf(("MPR:WNetDisconnectDialog1W not implemented.\n")); 457 529 return (ERROR_NO_NETWORK); 458 530 } … … 601 673 } 602 674 675 676 /***************************************************************************** 677 * The WNetGetNetworkInformation function returns extended 678 * information about a specific network provider whose name was 679 * returned by a previous network enumeration. 680 * Parameters: LPCSTR lpProvider 681 * LPNETINFOSTRUCT lpNetInfoStruct 682 * Variables : 683 * Result : API-Returncode 684 * Remark : 685 * Status : UNTESTED STUB 686 * 687 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 688 *****************************************************************************/ 689 690 ODINFUNCTION2(DWORD, WNetGetNetworkInformationA, 691 LPCSTR, lpProvider, 692 LPNETINFOSTRUCT, lpNetInfoStruct) 693 { 694 dprintf(("MPR:WNetGetNetworkInformationA not implemented.\n")); 695 return (ERROR_NO_NETWORK); 696 } 697 698 699 /***************************************************************************** 700 * The WNetGetNetworkInformation function returns extended 701 * information about a specific network provider whose name was 702 * returned by a previous network enumeration. 703 * Parameters: LPCWSTR lpProvider 704 * LPNETINFOSTRUCT lpNetInfoStruct 705 * Variables : 706 * Result : API-Returncode 707 * Remark : 708 * Status : UNTESTED STUB 709 * 710 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 711 *****************************************************************************/ 712 713 ODINFUNCTION2(DWORD, WNetGetNetworkInformationW, 714 LPCWSTR, lpProvider, 715 LPNETINFOSTRUCT, lpNetInfoStruct) 716 { 717 dprintf(("MPR:WNetGetNetworkInformationW not implemented.\n")); 718 return (ERROR_NO_NETWORK); 719 } 603 720 604 721 … … 772 889 773 890 /***************************************************************************** 891 * The WNetGetProviderName function obtains the provider name for 892 * a specific type of network. 893 * Parameters: DWORD dwNetType 894 * LPSTR lpProviderName 895 * LPDWORD lpBufferSize 896 * Variables : 897 * Result : API-Returncode 898 * Remark : 899 * Status : UNTESTED STUB 900 * 901 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 902 *****************************************************************************/ 903 904 ODINFUNCTION3(DWORD, WNetGetProviderNameA, 905 DWORD, dwNetType, 906 LPSTR, lpProviderName, 907 LPDWORD, lpBufferSize) 908 { 909 dprintf(("MPR:WNetGetProviderNameA not implemented.\n")); 910 return (ERROR_NO_NETWORK); 911 } 912 913 914 /***************************************************************************** 915 * The WNetGetProviderName function obtains the provider name for 916 * a specific type of network. 917 * Parameters: DWORD dwNetType 918 * LPWSTR lpProviderName 919 * LPDWORD lpBufferSize 920 * Variables : 921 * Result : API-Returncode 922 * Remark : 923 * Status : UNTESTED STUB 924 * 925 * Author : Patrick Haller [Fri, 1998/02/27 11:55] 926 *****************************************************************************/ 927 928 ODINFUNCTION3(DWORD, WNetGetProviderNameW, 929 DWORD, dwNetType, 930 LPWSTR, lpProviderName, 931 LPDWORD, lpBufferSize) 932 { 933 dprintf(("MPR:WNetGetProviderNameW not implemented.\n")); 934 return (ERROR_NO_NETWORK); 935 } 936 937 938 /***************************************************************************** 774 939 * The WNetGetUniversalName, functiontakes a drive-based path for 775 940 * a network resource and obtains a data structure that contains a -
trunk/src/mpr/MPR.DEF
r1589 r1590 1 ; $Id: MPR.DEF,v 1. 3 1999-11-04 10:32:36phaller Exp $1 ; $Id: MPR.DEF,v 1.4 1999-11-04 10:55:31 phaller Exp $ 2 2 3 3 ;Created by BLAST for IBMs compiler … … 25 25 ; WNetClearConnections = _WNetClearConnections@?? @16 26 26 WNetCloseEnum = _WNetCloseEnum@4 @17 27 ; WNetConnectionDialog1A = _WNetConnectionDialog1A@??@1828 ; WNetConnectionDialog1W = _WNetConnectionDialog1W@??@1927 WNetConnectionDialog1A = _WNetConnectionDialog1A@4 @18 28 WNetConnectionDialog1W = _WNetConnectionDialog1W@4 @19 29 29 ; WNetConnectionDialog2 = _WNetConnectionDialog2@?? @20 30 30 WNetConnectionDialog = _WNetConnectionDialog@8 @21 31 31 ; WNetDirectoryNotifyA = _WNetDirectoryNotifyA@?? @22 32 32 ; WNetDirectoryNotifyW = _WNetDirectoryNotifyW@?? @23 33 ; WNetDisconnectDialog1A = _WNetDisconnectDialog1A@??@2434 ; WNetDisconnectDialog1W = _WNetDisconnectDialog1W@??@2533 WNetDisconnectDialog1A = _WNetDisconnectDialog1A@4 @24 34 WNetDisconnectDialog1W = _WNetDisconnectDialog1W@4 @25 35 35 ; WNetDisconnectDialog2 = _WNetDisconnectDialog2@?? @26 36 36 WNetDisconnectDialog = _WNetDisconnectDialog@8 @27 … … 53 53 WNetGetLastErrorA = _WNetGetLastErrorA@20 @44 54 54 WNetGetLastErrorW = _WNetGetLastErrorW@20 @45 55 ; WNetGetNetworkInformationA = _WNetGetNetworkInformationA@??@4656 ; WNetGetNetworkInformationW = _WNetGetNetworkInformationW@??@4755 WNetGetNetworkInformationA = _WNetGetNetworkInformationA@8 @46 56 WNetGetNetworkInformationW = _WNetGetNetworkInformationW@8 @47 57 57 ; WNetGetPropertyTextA = _WNetGetPropertyTextA@?? @48 58 58 ; WNetGetPropertyTextW = _WNetGetPropertyTextW@?? @49 59 ; WNetGetProviderNameA = _WNetGetProviderNameA@??@5060 ; WNetGetProviderNameW = _WNetGetProviderNameW@??@5159 WNetGetProviderNameA = _WNetGetProviderNameA@12 @50 60 WNetGetProviderNameW = _WNetGetProviderNameW@12 @51 61 61 ; WNetGetProviderTypeA = _WNetGetProviderTypeA@?? @52 62 62 ; WNetGetProviderTypeW = _WNetGetProviderTypeW@?? @53 -
trunk/src/mpr/makefile
r1585 r1590 1 # $Id: makefile,v 1. 7 1999-11-03 23:28:05 sandervlExp $1 # $Id: makefile,v 1.8 1999-11-04 10:55:31 phaller Exp $ 2 2 3 3 # … … 39 39 40 40 41 mpr.obj: mpr.cpp mpr.h41 mpr.obj: mpr.cpp 42 42 initterm.obj: initterm.cpp 43 43
Note:
See TracChangeset
for help on using the changeset viewer.