<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.howtoforge.com" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
 <title>HowtoForge - Linux Howtos and Tutorials - C/C++</title>
 <link>http://www.howtoforge.com/taxonomy/term/80/all</link>
 <description></description>
 <language>en</language>
 <atom:link href="http://www.howtoforge.com/rss/programming/c-cplusplus.rss" rel="self" type="application/rss+xml" />
 <image>
  <title>HowtoForge - Linux Howtos and Tutorials - C/C++</title>
  <url>http://www.howtoforge.com/images/howtoforge_rss.png</url>
  <link>http://www.howtoforge.com/taxonomy/term/80/all</link>
 </image>

<item>
 <title>Integrate Video Streaming Into Your C/C++ Application Using Nex Gen Media Server API</title>
 <link>http://www.howtoforge.com/integrate-video-streaming-into-your-c-c-plusplus-application-using-nex-gen-media-server-api</link>
 <description>
&lt;p&gt;&lt;b&gt;Integrate Video Streaming Into Your C/C++ Application Using Nex Gen Media Server API&lt;/b&gt;&lt;/p&gt;


&lt;p&gt;Recently I took a closer look at Nex Gen Media Server and their API 
framework. NGMS is a multi-purpose streaming server which supports some 
of the popular streaming protocols such as RTSP, RTMP, Apple&#039;s HTTP 
Live, and MPEG-2 Transport Stream. NGMS comes with transcoding support 
and is able to capture and reformat live video streams and adapt them to
 be received by another type of device, such as capturing an HD video 
feed and converting it to be received by an iPhone over 3g. My focus was
 to integrate the NGMS API to control the streaming features directly 
from my own C application. In this example I am using Ubuntu Linux 
10.04.&lt;/p&gt;
</description>
 <category domain="http://www.howtoforge.com/sitemap/linux/ubuntu">Ubuntu</category>
 <category domain="http://www.howtoforge.com/sitemap/programming/c-cplusplus">C/C++</category>
 <pubDate>Fri, 07 Oct 2011 19:20:21 +0200</pubDate>
 <guid>http://www.howtoforge.com/integrate-video-streaming-into-your-c-c-plusplus-application-using-nex-gen-media-server-api</guid>
 <comments>http://www.howtoforge.com/integrate-video-streaming-into-your-c-c-plusplus-application-using-nex-gen-media-server-api#comment</comments>
</item>
<item>
 <title>Reading Files From The Linux Kernel Space (Module/Driver) (Fedora 14)</title>
 <link>http://www.howtoforge.com/reading-files-from-the-linux-kernel-space-module-driver-fedora-14</link>
 <description>&lt;table align=&quot;left&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;39&quot; height=&quot;40&quot; style=&quot;margin-top:0px;margin-bottom:0px;&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;img class=&quot;teaser-image-even&quot; src=&quot;http://static.howtoforge.com/images/teaser/tux.gif&quot; width=&quot;36&quot; height=&quot;40&quot; alt=&quot;&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;p&gt;&lt;b&gt;Reading Files From The Linux Kernel Space (Module/Driver) (Fedora 
14)&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;It seems like operations that
communicate with userspace are really discouraged.  And I am not
arguing with that.  Although it doesn&#039;t mean that they cannot be
accomplished.  A driver loads configuration that could be stored only
on HDD.  When MS Windows XP boots up it remembers that I have turned
Bluetooth off so it is not powered on, unlike even the latest Linux
(Fedora 14 at the moment of writing) – such functionality in many
drivers was not implemented.  When developer uses procfs or 
character devices there should be another software or script in boot
sequence that is actually sending information from a file to
particular device. After some time looking over the
internet I have managed to write such module that reads a file.&lt;/p&gt;
</description>
 <category domain="http://www.howtoforge.com/sitemap/linux/fedora">Fedora</category>
 <category domain="http://www.howtoforge.com/sitemap/linux/kernel">Kernel</category>
 <category domain="http://www.howtoforge.com/sitemap/programming/c-cplusplus">C/C++</category>
 <pubDate>Mon, 03 Jan 2011 16:52:59 +0100</pubDate>
 <guid>http://www.howtoforge.com/reading-files-from-the-linux-kernel-space-module-driver-fedora-14</guid>
 <comments>http://www.howtoforge.com/reading-files-from-the-linux-kernel-space-module-driver-fedora-14#comment</comments>
</item>
<item>
 <title>Learning C/C++ Step-By-Step</title>
 <link>http://www.howtoforge.com/learning-c-cplusplus-step-by-step</link>
 <description>&lt;p&gt;&lt;b&gt;Learning C/C++ Step-By-Step&lt;/b&gt; &lt;/p&gt;

&lt;p&gt;Many people are really interested in learning and implementing C/C++ programs on their favorite platforms like DOS/Windows or Linux. If
you are the one looking for a step-by-step guide to get started, this
tutorial is for you. Let me know your comments on&amp;nbsp; my tiny attempt to
serve the community.&lt;/p&gt;</description>
 <category domain="http://www.howtoforge.com/sitemap/programming/c-cplusplus">C/C++</category>
 <pubDate>Wed, 07 Jan 2009 18:03:36 +0100</pubDate>
 <guid>http://www.howtoforge.com/learning-c-cplusplus-step-by-step</guid>
 <comments>http://www.howtoforge.com/learning-c-cplusplus-step-by-step#comment</comments>
</item>
<item>
 <title>An Explanation of Pointers (C++)</title>
 <link>http://www.howtoforge.com/pointers_c_plusplus</link>
 <description>&lt;p&gt;&lt;b&gt;An Explanation of Pointers (C++)&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Pointers are basically the same as any other variable. However, what is different about them is that instead of containing actual data, they contain a pointer to the memory location where information can be found. This is a very important concept, and many programs and ideas rely on pointers as the basis of their design, linked lists for example.&lt;/p&gt;</description>
 <category domain="http://www.howtoforge.com/sitemap/programming/c-cplusplus">C/C++</category>
 <pubDate>Sat, 24 Feb 2007 18:20:15 +0100</pubDate>
 <guid>http://www.howtoforge.com/pointers_c_plusplus</guid>
 <comments>http://www.howtoforge.com/pointers_c_plusplus#comment</comments>
</item>
<item>
 <title>Beginner&#039;s Guide To c++</title>
 <link>http://www.howtoforge.com/beginners_guide_to_cplusplus</link>
 <description>&lt;p&gt;&lt;b&gt;Beginner&#039;s Guide To c++&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;This is a guide to the very basics of c++ its aimed at people who have never programmed in C++, it covers setting up the program, and also the basics of variable definition, commenting, the cout and cin function and basic operators.&lt;/p&gt;
</description>
 <category domain="http://www.howtoforge.com/sitemap/programming/c-cplusplus">C/C++</category>
 <pubDate>Thu, 22 Feb 2007 18:25:23 +0100</pubDate>
 <guid>http://www.howtoforge.com/beginners_guide_to_cplusplus</guid>
 <comments>http://www.howtoforge.com/beginners_guide_to_cplusplus#comment</comments>
</item>
</channel>
</rss>

