PowerBuilder Function Get Computer Name gf_get_computer_name
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function Name : gf_get_computer_name // Argument Name : (None) // Return Type : String /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Local External Functions : // Function boolean GetComputerNameA (ref String lpBuffer, ref ulong nSize) Library "kernel32.dll" /////////////////////////////////////////////////////////////////////////////////////////////////////////////// String ls_temp ULong lul_value Boolean lb_rc lul_value = 255 ls_temp = Space(255) lb_rc = GetComputerNameA (ls_temp, lul_value) Return ls_temp |
Good Luck!
Subscribe
Login
0 Comments
Oldest