码迷,mamicode.com
首页 > Windows程序 > 详细

Windows API - GetUserName

时间:2016-10-10 16:36:34      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include <stdio.h>
 2 #include <windows.h>
 3 
 4 #define INFO_BUFFER_SIZE 32767
 5 
 6 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
 7 {
 8     TCHAR  infoBuf[INFO_BUFFER_SIZE];
 9     DWORD  bufCharCount = INFO_BUFFER_SIZE;
10     if( !GetUserName( infoBuf, &bufCharCount ) )
11         {
12             MessageBox(NULL, TEXT("无法获得用户名"),TEXT("错误"),MB_ICONSTOP|MB_OK);
13         }
14     else
15         {
16             char istr[INFO_BUFFER_SIZE];
17             sprintf(istr,"欢迎使用本程序,当前用户名为:\r\n%s",infoBuf);
18             MessageBox(NULL,TEXT(istr),"MSG",MB_OK);
19         }
20     return 0;
21 }

 

Windows API - GetUserName

标签:

原文地址:http://www.cnblogs.com/cnrsgx/p/5946070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!