Warum? Man darf hier auch mal Fragen stellen, die nichts mit Delphi zu tun haben.
@PomBär: Im Platform
SDK von Microsoft, bzw. online im
MSDN, findest du ein Beispiel dazu.
Code:
#define BUFSIZE 1024
void main()
{
LPTSTR lpszSystemInfo; // pointer to system information string
DWORD cchBuff = BUFSIZE; // size of computer or user name
TCHAR tchBuffer[BUFSIZE]; // buffer for string
lpszSystemInfo = tchBuffer;
// Get and display the name of the computer.
if( GetComputerName(lpszSystemInfo, &cchBuff) )
printf("Computer name: %s\n", lpszSystemInfo);
}
Mal rauskopiert, ohne Gewähr bezüglich Vollständigkeit. Wie gesagt, schau dir das
PSDK an. Das nehme ich als Delphi-User als Referenz, C-User müssen da erst recht ins Träumen geraten.