<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FWindows%2FWindows_API</id>
		<title>Csharp/C Sharp/Windows/Windows API - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FWindows%2FWindows_API"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Windows_API&amp;action=history"/>
		<updated>2026-04-30T04:03:53Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Windows_API&amp;diff=1103&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Windows_API&amp;diff=1103&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:19Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Windows_API&amp;diff=1104&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Windows_API&amp;diff=1104&amp;oldid=prev"/>
				<updated>2010-05-26T11:43:02Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==BitBlt==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
public class Form1 : Form {&lt;br /&gt;
    const int SRCCOPY = 0xcc0020;&lt;br /&gt;
    [System.Runtime.InteropServices.DllImportAttribute(&amp;quot;gdi32.dll&amp;quot;)]&lt;br /&gt;
    private static extern int BitBlt(&lt;br /&gt;
      IntPtr hdcDest,     // handle to destination DC (device context)&lt;br /&gt;
      int nXDest,         // x-coord of destination upper-left corner&lt;br /&gt;
      int nYDest,         // y-coord of destination upper-left corner&lt;br /&gt;
      int nWidth,         // width of destination rectangle&lt;br /&gt;
      int nHeight,        // height of destination rectangle&lt;br /&gt;
      IntPtr hdcSrc,      // handle to source DC&lt;br /&gt;
      int nXSrc,          // x-coordinate of source upper-left corner&lt;br /&gt;
      int nYSrc,          // y-coordinate of source upper-left corner&lt;br /&gt;
      System.Int32 dwRop  // raster operation code&lt;br /&gt;
      );&lt;br /&gt;
    public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
    }&lt;br /&gt;
    private void Form1_Paint(object sender, PaintEventArgs e) {&lt;br /&gt;
        Graphics g = e.Graphics;&lt;br /&gt;
        g.FillRectangle(Brushes.White, ClientRectangle);&lt;br /&gt;
        g.DrawRectangle(Pens.Black, 10, 10, 40, 40);&lt;br /&gt;
        IntPtr dc = g.GetHdc();&lt;br /&gt;
        BitBlt(dc, 70, 0, 60, 60, dc, 0, 0, SRCCOPY);&lt;br /&gt;
        g.ReleaseHdc(dc);&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent() {&lt;br /&gt;
        this.SuspendLayout();&lt;br /&gt;
        this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);&lt;br /&gt;
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;&lt;br /&gt;
        this.ClientSize = new System.Drawing.Size(292, 268);&lt;br /&gt;
        this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);&lt;br /&gt;
        this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
    [STAThread]&lt;br /&gt;
    static void Main() {&lt;br /&gt;
        Application.EnableVisualStyles();&lt;br /&gt;
        Application.Run(new Form1());&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DLL: GetVersionEx==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
[StructLayout(LayoutKind.Sequential)]&lt;br /&gt;
class OSVersionInfo {&lt;br /&gt;
    public int dwOSVersionInfoSize;&lt;br /&gt;
    public int dwMajorVersion;&lt;br /&gt;
    public int dwMinorVersion;&lt;br /&gt;
    public int dwBuildNumber;&lt;br /&gt;
    public int dwPlatformId;&lt;br /&gt;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]&lt;br /&gt;
    public String szCSDVersion;&lt;br /&gt;
}&lt;br /&gt;
class MainClass {&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;)]&lt;br /&gt;
    public static extern bool GetVersionEx([In, Out] OSVersionInfo osvi);&lt;br /&gt;
    static void Main(string[] args) {&lt;br /&gt;
        OSVersionInfo osvi = new OSVersionInfo();&lt;br /&gt;
        osvi.dwOSVersionInfoSize = Marshal.SizeOf(osvi);&lt;br /&gt;
        GetVersionEx(osvi);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Class size: &amp;quot; + osvi.dwOSVersionInfoSize);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Major Version: &amp;quot; + osvi.dwMajorVersion);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Minor Version: &amp;quot; + osvi.dwMinorVersion);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Build Number: &amp;quot; + osvi.dwBuildNumber);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Platform Id: &amp;quot; + osvi.dwPlatformId);&lt;br /&gt;
        Console.WriteLine(&amp;quot;CSD Version: &amp;quot; + osvi.szCSDVersion);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Platform: &amp;quot; + Environment.OSVersion.Platform);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Version: &amp;quot; + Environment.OSVersion.Version);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Get OS Version from kernel32.dll==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        API.OSVERSIONINFO info = new API.OSVERSIONINFO();&lt;br /&gt;
        info.dwOSVersionInfoSize = Marshal.SizeOf(info);&lt;br /&gt;
        bool resp = API.GetVersionEx(ref info);&lt;br /&gt;
        if (resp == false) {&lt;br /&gt;
            Console.WriteLine(&amp;quot;GetVersion failed&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}.{1}.{2}&amp;quot;,&lt;br /&gt;
            info.dwMajorVersion,&lt;br /&gt;
            info.dwMinorVersion,&lt;br /&gt;
            info.dwBuildNumber);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public class API {&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;)]&lt;br /&gt;
    public static extern&lt;br /&gt;
        bool GetVersionEx(ref OSVERSIONINFO lpVersionInfo);&lt;br /&gt;
    [StructLayout(LayoutKind.Sequential)]&lt;br /&gt;
    public struct OSVERSIONINFO {&lt;br /&gt;
        public System.Int32 dwOSVersionInfoSize;&lt;br /&gt;
        public System.Int32 dwMajorVersion;&lt;br /&gt;
        public System.Int32 dwMinorVersion;&lt;br /&gt;
        public System.Int32 dwBuildNumber;&lt;br /&gt;
        public System.Int32 dwPlatformId;&lt;br /&gt;
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]&lt;br /&gt;
        public String szCSDVersion;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Get the Total Free Space on a Drive by using kernel32.dll==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class GetFreeSpace {&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;, EntryPoint=&amp;quot;GetDiskFreeSpaceExA&amp;quot; )]&lt;br /&gt;
    private static extern long GetDiskFreeSpaceEx(string lpDirectoryName, out long lpFreeBytesAvailableToCaller, out long lpTotalNumberOfBytes, out long lpTotalNumberOfFreeBytes);&lt;br /&gt;
    private static void Main() {&lt;br /&gt;
        long result, total, free, available;&lt;br /&gt;
        result = GetDiskFreeSpaceEx(&amp;quot;c:&amp;quot;, out available, out total, out free);&lt;br /&gt;
        if (result != 0) {&lt;br /&gt;
            Console.WriteLine(&amp;quot;Total Bytes: {0:N}&amp;quot;, total);&lt;br /&gt;
            Console.WriteLine(&amp;quot;Free Bytes: {0:N}&amp;quot;, free);&lt;br /&gt;
            Console.WriteLine(&amp;quot;Available Bytes: {0:N}&amp;quot;, available);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==import CreateDirectory and FormatMessage==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        bool resp = API.CreateDirectory(@&amp;quot;c*:\file.txt&amp;quot;, IntPtr.Zero);&lt;br /&gt;
        if (resp == false) {&lt;br /&gt;
            StringBuilder message;&lt;br /&gt;
            int errorcode = Marshal.GetLastWin32Error();&lt;br /&gt;
            API.FormatMessage(API.FORMAT_MESSAGE_ALLOCATE_BUFFER | API.FORMAT_MESSAGE_FROM_SYSTEM | API.FORMAT_MESSAGE_IGNORE_INSERTS,IntPtr.Zero, errorcode,0, out message, 0, IntPtr.Zero);&lt;br /&gt;
            Console.WriteLine(message);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public class API {&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;, SetLastError = true)]&lt;br /&gt;
    public static extern bool CreateDirectory(string lpPathName, IntPtr lpSecurityAttributes);&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;, SetLastError = false)]&lt;br /&gt;
    public static extern System.Int32 FormatMessage(&lt;br /&gt;
        System.Int32 dwFlags,&lt;br /&gt;
        IntPtr lpSource,&lt;br /&gt;
        System.Int32 dwMessageId,&lt;br /&gt;
        System.Int32 dwLanguageId,&lt;br /&gt;
        out StringBuilder lpBuffer,&lt;br /&gt;
        System.Int32 nSize,&lt;br /&gt;
        IntPtr va_list);&lt;br /&gt;
    public const int FORMAT_MESSAGE_ALLOCATE_BUFFER = 256;&lt;br /&gt;
    public const int FORMAT_MESSAGE_IGNORE_INSERTS = 512;&lt;br /&gt;
    public const int FORMAT_MESSAGE_FROM_STRING = 1024;&lt;br /&gt;
    public const int FORMAT_MESSAGE_FROM_HMODULE = 2048;&lt;br /&gt;
    public const int FORMAT_MESSAGE_FROM_SYSTEM = 4096;&lt;br /&gt;
    public const int FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192;&lt;br /&gt;
    public const int FORMAT_MESSAGE_MAX_WIDTH_MASK = 255;&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==imports the GetModuleHandleW function specifically==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        int hProcess = API.GetModuleHandleW(null);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public class API {&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;, ExactSpelling = true)]&lt;br /&gt;
    public static extern int GetModuleHandleW(string filename);&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==imports the printf function==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        int val1 = 5, val2 = 10;&lt;br /&gt;
        API.printf(&amp;quot;%d+%d=%d&amp;quot;, val1, val2, val1 + val2);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public class API {&lt;br /&gt;
    [DllImport(&amp;quot;msvcrt.dll&amp;quot;, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]&lt;br /&gt;
    public static extern int printf(string formatspecifier, int lhs, int rhs, int total);&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==imports three functions to display the vertical and horizontal size of the screen.==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        IntPtr hDC = API.GetDC(IntPtr.Zero);&lt;br /&gt;
        int v = API.GetDeviceCaps(hDC, API.HORZRES);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Vertical size of window {0}mm.&amp;quot;, v);&lt;br /&gt;
        int h = API.GetDeviceCaps(hDC, API.HORZRES);&lt;br /&gt;
        Console.WriteLine(&amp;quot;Horizontal size of window {0}mm.&amp;quot;, h);&lt;br /&gt;
        int resp = API.ReleaseDC(IntPtr.Zero, hDC);&lt;br /&gt;
        if (resp != 1) {&lt;br /&gt;
            Console.WriteLine(&amp;quot;Error releasing hdc&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public static class API {&lt;br /&gt;
    [DllImport(&amp;quot;user32.dll&amp;quot;)]&lt;br /&gt;
    public static extern IntPtr GetDC(IntPtr hWnd);&lt;br /&gt;
    [DllImport(&amp;quot;user32.dll&amp;quot;)]&lt;br /&gt;
    public static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);&lt;br /&gt;
    [DllImport(&amp;quot;gdi32.dll&amp;quot;)]&lt;br /&gt;
    public static extern int GetDeviceCaps(IntPtr hDC, int nIndex);&lt;br /&gt;
    public const int HORZSIZE = 4;  // horizontal size in pixels&lt;br /&gt;
    public const int VERTSIZE = 6;  // vertical size in pixels&lt;br /&gt;
    public const int HORZRES = 8;   // horizontal size in millimeters&lt;br /&gt;
    public const int VERTRES = 10;  // vertical size in millimeters&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Keyboard timer: GetTickCount==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class KeyTimer : System.Windows.Forms.Form {&lt;br /&gt;
    private System.ruponentModel.Container components = null;&lt;br /&gt;
    private uint start = 0;&lt;br /&gt;
    private uint stop = 0;&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;)]&lt;br /&gt;
    public static extern uint GetTickCount();&lt;br /&gt;
    public KeyTimer() {&lt;br /&gt;
    }&lt;br /&gt;
    [STAThread]&lt;br /&gt;
    static void Main() {&lt;br /&gt;
        Application.Run(new KeyTimer());&lt;br /&gt;
    }&lt;br /&gt;
    protected override void OnKeyDown(KeyEventArgs args) {&lt;br /&gt;
        start = GetTickCount();&lt;br /&gt;
    }&lt;br /&gt;
    protected override void OnKeyUp(KeyEventArgs args) {&lt;br /&gt;
        stop = GetTickCount();&lt;br /&gt;
        uint elapsed = (stop - start);&lt;br /&gt;
        MessageBox.Show(Convert.ToString(args.KeyData) + &amp;quot;, time elapsed: &amp;quot; + Convert.ToString(elapsed) + &amp;quot; msecs&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==marshals string for unmanaged memory as ANSI.==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        int hProcess = API.GetModuleHandle(null);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public class API {&lt;br /&gt;
    [DllImport(&amp;quot;kernel32.dll&amp;quot;, CharSet = CharSet.Ansi)]&lt;br /&gt;
    public static extern int GetModuleHandle(string filename);&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==MessageBox from user32.dll==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        string caption = &amp;quot;Visual C# 2005&amp;quot;;&lt;br /&gt;
        string text = &amp;quot;Hello, world!&amp;quot;;&lt;br /&gt;
        API.ShowMessage(0, text, caption, 0);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
public class API {&lt;br /&gt;
    [DllImport(&amp;quot;user32.dll&amp;quot;, EntryPoint = &amp;quot;MessageBox&amp;quot;)]&lt;br /&gt;
    public static extern int ShowMessage(int hWnd,&lt;br /&gt;
        string text, string caption, uint type);&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>