Windows程序设计_20_一键打开博客园程序

       没有很多东西,就是为了自己方便,编写啦一段代码,用来一键开启博客园主页。

#ifndef STRICT
    #define STRICT
#endif

#include <windows.h>
#include <tchar.h>
#include <assert.h>

/*
_T宏:
    #define __T(x)  L##x
    #define _T(x)   __T(x)

这里的_T宏用到了 ## 字符串粘贴符,当用 ## 的时候,可以将
一些字符粘贴到 字符串前面
*/
const TCHAR szOperation[]=_T("open");
const TCHAR szAddress[]=_T("www.cnblogs.com");

int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int iShowCmd)
{
    HINSTANCE hResult=ShellExecute(NULL,szOperation,szAddress,NULL,NULL,SW_SHOWNORMAL);

    assert(hResult>(HINSTANCE)HINSTANCE_ERROR);

    return 0;
}

 

---恢复内容结束---

你可能感兴趣的:(Windows程序设计_20_一键打开博客园程序)