把转载的,如何设置windows live writer记录在这儿

来源:互联网 发布:linux chown 命令详解 编辑:程序博客网 时间:2024/05/30 05:23

  博客--CSDN的博客,

编辑器   --windows live writer(2009)

   CSDN的博客 API地址是http://blog.csdn.net/USERNAME/services/metablogapi.aspx.

       其中的USERNAME为用户名称

  日志服务类型:metawebblog API的类型。 guide2.jpg

guide3

     代码高亮显示功能插件:Insert Code for Windows Live  (支持中文注释)

//只是尝试。static portTASK_FUNCTION( vBlockingQueueProducer, pvParameters ){unsigned portSHORT usValue = 0;xBlockingQueueParameters *pxQueueParameters;portSHORT sErrorEverOccurred = pdFALSE;    pxQueueParameters = ( xBlockingQueueParameters * ) pvParameters;    for( ;; )    {                if( xQueueSend( pxQueueParameters->xQueue, ( void * ) &usValue, pxQueueParameters->xBlockTime ) != pdPASS )        {            sErrorEverOccurred = pdTRUE;        }        else        {            /* We have successfully posted a message, so increment the variable            used to check we are still running. */            if( sErrorEverOccurred == pdFALSE )            {                ( *pxQueueParameters->psCheckVariable )++;            }            /* Increment the variable we are going to post next time round.  The            consumer will expect the numbers to    follow in numerical order. */            ++usValue;        }    }}
.csharpcode, .csharpcode pre{font-size: small;color: black;font-family: consolas, "Courier New", courier, monospace;background-color: #ffffff;/*white-space: pre;*/}.csharpcode pre { margin: 0em; }.csharpcode .rem { color: #008000; }.csharpcode .kwrd { color: #0000ff; }.csharpcode .str { color: #006080; }.csharpcode .op { color: #0000c0; }.csharpcode .preproc { color: #cc6633; }.csharpcode .asp { background-color: #ffff00; }.csharpcode .html { color: #800000; }.csharpcode .attr { color: #ff0000; }.csharpcode .alt {background-color: #f4f4f4;width: 100%;margin: 0em;}.csharpcode .lnum { color: #606060; }
原创粉丝点击