Última atualização: 2010,
check my updates at http://twitter.com/arabcoder ....
sbah el khair "good morning in arabic language"
Bem-vindo
مرحبا
ברוך הבא
καλώς όρισες
Benvenuto
Benvingut
Bienvenido
Bienvenue
Chào mùng
Welcome
Ahla Wa Sahla
Willkommen
Witamy
Be carefull, only braves can use our software...
|
|
My Relatives
Development of very fast software
And research on high speed code execution on Win32/Win64, Linux, C/C++ programming, processors and DSP based code
Now PHP , HTML , Ajax and Mysql
If you is able to use our software congratulations, you is a good programmer
Best viewed with Netscape Navigator (just a joke,he he he...)
We want to thanks Winsite for the web service provided to us in the last 15 years
(segunda-feira, 22 de fevereiro de 2010 09:05:23) We are working on MySql , PHP , .Net framework 2.0 (ouch...) and Internet applications , working on the sites:
Quote of the year:
“A incerteza é o caminho da liberdade com sabedoria....(ex-esposa do Ghazi)”
Alladin's News:
|
Replacement for ANSI C fopen based file access
{10 march 2010}
longfile.c has functions that can replace fopen based functions It will give Unicode support via UTF-8 and support also to files above 4GB You only need to add it to your projects and replace some of the code and voila, full Unicode support and large files Consider this an Alladin gift |
|
Checksum updated, DLL and OCX, very important modifications
{10 march 2010}
ChangeLog 2010-Mar-09 Alladin [arab@rspsoftware.com.br] * 0.1.1 build 0003 - Full Unicode support via utf-8 encode, full support to large file, the dll is the same for the ocx and to the dll version now to avoid possible future problems Download Checksum DLL and or Checksum OCX latest release only from this site: http://rspchecksum.sourceforge.net Files rsp_checksum_dll_011_build_0003_src.zip and rsp_checksum_ocx_284_alladin_special_release.zip |
|
New release, Encrypt DLL Encrypt OCX
{08 march 2010}
ChangeLog 2010-Mar-8 Alladin [arab@rspsoftware.com.br] * 3.5.1 build 0030 - Lots of improvements, finished the sample project in .net,full unicode support, the dll and ocx share the same dll now. Download Encrypt DLL and or Encrypt OCX latest release only from this site: http://rspencdll.sourceforge.net/ Files rsp_encrypt_dll_351_build_0030_src.zip and rsp_encrypt_ocx_345_alladin_special_release.zip |
|
More improvements, MP3 DLL and OCX
{05 march 2010}
ChangeLog 2010-Mar-05 Alladin [arab@rspsoftware.com.br] Encrypt_File and SaveStreamingFile has very small bugs yet , bug fixed on EnableSoundTouch, documentation complete Download MP3 DLL and or MP3 OCX latest release only from this site: http://rsppmp3.sourceforge.net/ Files rsp_mp3_dll_1.1.4_build_2009_src.zip and rsp_mp3_ocx_3.3.4_alladin_special_release_src.zip |
|
Lots of bugs fixed, MP3 DLL and OCX
{04 march 2010}
ChangeLog 2010-Mar-04 Alladin [arab@rspsoftware.com.br] *1-fixed replaygain, compare sources to see where *2-fixed setdebuginformation function , check decoder.c, and compare sources *3-fixed readonly bug in a source that I dont remeber now, normalize function only write if the file ISNOT read only 4-some of the code is missing yet long file support ( above 1gb) 5-forced removal of dprintfs when possible 6-original modified version of mpeglib was lost, sorry, to compile I need a clean version of msvc6, my version is incomplete 7-missing removal of only some of the debug information, don´t affect execution, maybe a few processor cicles, I need more time to remove it Download MP3 DLL and or MP3 OCX latest release only from this site: http://rsppmp3.sourceforge.net/ Files rsp_mp3_dll_1.1.2_build_2006_src.zip and rsp_mp3_ocx_3.3.2_alladin_special_release.zip |
|
ReplayGain bug, by Alladin
{02 march 2010}
Bug found on all our software that uses ReplayGain (mp3 ocx and dlls), fixes will be available soon Avoid using the volume normalization option for the moment |
|
Something that don´t occur each day, by Alladin
{10:22 PM 26 february 2010}
Precisei ligar para o patrão ás 04:23 da manhã (26/feb/2010), entrou virus no computador... I was obligated to call dad at 04:23 AM (fev/26/2010) , the computer has a virus... |
|
Problems...
{21:10 PM 22 february 2010}
RSP Encrypt 3.4.4 not released today , maybe tomorrow, sorry for the delay ( Alladin ) |
|
Correction2...
{8:56 AM 22 february 2010}
RSP Encrypt OCX 3.4.5 will be released at 21:00 PM if possible, it will be the best version in 18 years |
|
Correction...
{16:50 21 february 2010}
Instead of minutes a few hours will be required to the new release of the Encrypt OCX, too much small modifications required for perfect code with tips also on makefile and sources, anyway I am already working on it... |
|
We are working on a new release of the Encrypt ocx with some very small speed improvements
{15:28 21 february 2010}
New release will be available on a few minutes... |
|
Unicode support at your request
{20 february 2010}
Unicode support via utf-8 will only be added to our VB6 based ActiveX OCX and DLLs if you ask, thank you We hope to receive one email from you asking for it as soon as possible. |
|
microsoft_bug_fix
{20 february 2010}
There is a bug in the ListView component in .Net framework 2.0 when the ListView is in 'Details' mode and GridLines is true In this case the lines of the ListView may appear this way:
To avoid the problem insert a timer, set it to true and Interval to 1000 in the form and use this code: ListView.GridLines = false; ListView.Gridlines = true; It will fix the problem Also be carefull when renaming controls in Visual Studio 2008, if there is a colision on names it will just confuse the IDE and make your code stop compiling correctly, use it at your own risk and always make backups of your code prior modifications The IDE is not as smart as you think, at least in the 2008 version |
|
Optimized debug function
{19 february 2010}
Our new debug function, updated today, easy to remove debug information from code, use it at your own risk
/// <summary>
/// nova versão aprimorada do codigo de debug
/// 19/02/2010
/// </summary>
/// <param name="data">a string para imprimir com DebugView</param>
/// <param name="filter">o filtro para mostrar somente a informação relevante</param>
public static void dprintf2(string data, string filter)
{
#if NDPRINTF
return;
#endif
data = data + filter;
OutputDebugString(data);
}
[DllImport("kernel32.dll")]
static extern void OutputDebugString(string lpOutputString);
|
|
New ReplayGain based software
{17:23 domingo 3/Jan/2010}
Created a new sourceforge.net project to normalize wav pcm files prior to mp3 or other encode using ReplayGain ReplayGain is a good option to normalization and our mp3 ocx is using it for years now with very good result Check the project at sourceforge.net http://rspgain.sourceforge.net/ |
|
Results from the compression research that has just started
{18 de novembro de 2009}
With a question on stackoverflow I have discovered that Huffman encode can compress better than arithmetic encode, indeed depending on how it is implemented an optimal huffman table can compress any data to a single bit For years I was thinking that it was only possible with arithmetic encode stackoverflow question |
|
New compression research project
{16 de novembro de 2009}
This is a research project to possible improve compression using bwt, bwt is used on the bzip2 compression library and with some tweaks it can beat lzma( I supose ) The project has just started and we are already compressing better than the original Mark Nelson bwt sample code http://projectbwt.sourceforge.net |
|
New compression DLL
{Mon Nov 02 18:07:05 2009}
Win32 DLL to compress memory or files using zlib, bzip2 or lzo , the integrity check is provided by crc32, can be extended to use MD5 instead http://rspmfce.sourceforge.net |
|
Visit StackOverflow
{Tue Oct 20 15:26:53 2009}
StackOverflow is a must for people intereste in programming secrets in all languages Give it a try... http://stackoverflow.com |
|
LZO compression ready to be used
{Mon Oct 19 12:05:48 2009}
LZO is a portable lossless data compression library written in ANSI C. Reliable and thoroughly tested. High adoption - each second terrabytes of data are compressed by LZO. No bugs since the first release back in 1996. Offers pretty fast compression and *extremely* fast decompression. Includes slower compression levels achieving a quite competitive compression ratio while still decompressing at this very high speed. Distributed under the terms of the GNU General Public License (GPL v2+). Commercial licenses are available on request. Military-grade stability and robustness. Just add the lines at main.c to your code and you will have LZO compression on your software minilzo.203_ready_src.zip |
#include <windows.h> #include <stdio.h> int lzo_uncompress (char *inbuf, int insize, char *outbuf, int *outsize); int lzo_compress (char *inbuf, int insize, char *outbuf, int *outsize); #if 1 int main () { int ret; int sizeout = 0; int sizeout2 = 0; static char inbuf[100000]; static char outbuf[200000]; static char uncompressed[100000]; //buffer need to be larger than the input buffer //because the data can be uncompressible ret = lzo_compress (inbuf, 100000, outbuf, &sizeout); printf ("Compressed %d\n", sizeout); ret = lzo_uncompress (outbuf, sizeout, uncompressed, &sizeout2); printf ("Uncompressed %d\n", sizeout2); return 0; } #endif
|
Win32 encryption DLL released
{Fri Oct 16 18:59:45 2009}
RSP Encrypt DLL released, it is the main encryption tool available, full Unicode support ( this release is missing file encryption support ) ,Unicode is done via utf-8 encode, next release will have more features, as usual it has RC4 and AES 256 as the encryption modes, recommended the CTR mode on AES for full security http://rspencdll.sourceforge.net/ |
|
Correctly handling Unicode in C#
{Fri Oct 16 11:01:48 2009}
The best way to don´t lose Unicode data is to convert it to utf-8 utf-8 is a standard and it is easy to convert and the Windows apis work better with ansi strings When possible always handle strings or file or path names as utf-8 and forget about the absence of Unicode support At least this is the way we will handle it in future versions of our software |
|
Small and fast database project started
{Thu Oct 15 10:31:07 2009}
RSPdb is a tiny very fast database that was developed to be a replacement to ini files and xml when storing applications information, it is being developed to be small and fast and sql over it will be implemented as an extension http://rspdb.sourceforge.net/ |
|
RSP AnyEnc Application released
{Sat Oct 10 14:03:11 2009}
The compiled project ready to use is available, as the name says it is a ffmpeg based encoder/decoder with support to lots of formats, the input format is detected by extension, the basic controls are available it was generated to be very easy to use by any level of computer users Click here |
|
First fully functional version of RSP AnyEnc released
(Sat Oct 10 12:11:47 2009)
2009-Oct-08 Arab [arab@rspsoftware.com.br] * 0.1.3 build 0003 - First release capable of converting files, notice that the latest version of ffmpeg cannot convert flv files correctly, use release SVN-r15986 instead, download it from http://ffmpeg.arrozcru.org/builds/ or http://rspsoftware.com.br/ffmpeg.rar, make some tests and you will see that avi files created from flv with the latest release will be out of sinc when avi is xvid and audio is mp3 , more modifications will be added to the next release http://rspanyenc.sourceforge.net |
|
RSP Encrypt OCX 3.4.3 Released
(Fri Oct 09 12:23:33 2009)
Added full long files support ( above 2gb ), other minor modifications http://rspencocx.sourceforge.net Encrypt OCX Homepage |
|
New release of the RSP Aspi
(Thu Oct 08 11:38:19 2009)
2009-Oct-07 Arab [arab@rspsoftware.com.br] * 0.2.1 build 0011 - Added code to load and unload media http://rspaspi.sourceforge.net/ |
|
New release of the RSP Aspi
(Wed Oct 07 13:50:14 2009)
2009-Oct-07 Arab [arab@rspsoftware.com.br] * 0.1.6 build 0008 - Added code to set the speed of the CD unit and retrieve the current and max CD speed. Give it a try http://rspaspi.sourceforge.net/ |
|
New release of the RSP MP3 DLL
(Wed Oct 07 13:47:21 2009)
2009-Oct-06 Arab [arab@rspsoftware.com.br] * 1.1.2 build 2005 - Added mode code to the sample project http://rsppmp3.sourceforge.net/ |
|
RSP Aspi updated
(Tue Oct 06 12:00:56 2009)
2009-10-06 Arab [arab@rspsoftware.com.br] * 0.1.0 build 0005 Removed the old Akrip interface and initiated a new clean code , the base code to access the drive is ready http://rspaspi.sourceforge.net/ |
|
RSP Zip Compress DLL updated
(Fri Oct 02 07:47:39 2009)
2009-10-02 Arab [arab@rspsoftware.com.br] * 0.0.1 build 0006 Updated the code to read comments from zip file, now it is more robust and faster http://rspzip.sourceforge.net/ |
|
RSP Zip Compress DLL updated
(Thu Oct 01 13:10:18 2009)
2009-10-01 Arab [arab@rspsoftware.com.br] * 0.0.1 build 0005 Zip file comments support now implemented 2009-10-01 Arab [arab@rspsoftware.com.br] * 0.0.1 build 0004 - Added ability to extract Zip64 zip files, two modes of unzip work available , mode Unzip 5.5 or Unzip 6.0, pause, resume and cancel not implemented yet when using mode 6.0, ability to see zip file comments not implemented yet http://rspzip.sourceforge.net/ |
|
RSP Zip Compress DLL as usual updated
(2009-09-30)
ChangeLog Arab [arab@rspsoftware.com.br] * 0.0.1 build 0003 - Added all the required function to zip, unzip, list and test standard zip files, support to extended zip files ( modifications PKware and Winzip did to the zip format after 1997 ) are already being added to the build 0004 to be released in a few days http://rspzip.sourceforge.net/ |
|
RSP ASPI Updated
(Wed Sep 30 08:16:16 2009)
ChangeLog 2009-09-30 Arab * For the moment when extracting data it will be a wav file and if it is not a valid audio CD the data is incomplete , Click here! |
|
New project on SourceForge
(28 Mon September 10:45 2009)
Win32 DLL and library to burn/rip/test/fix/erase
CD-R/CD-RW/DVD-RAM/DVD-R/DVD-RW/DVD+R/DVD+RW/DVD+R DL/BD-R/BD-RE,
and eventually it is also a documentation and or tutorial to
Adaptec ASPI,
Click here!
|
|
RSP WAV Resampler 0.0.1 released!
(Sun Sep 27 19:43:24 2009)
New software to resample very fast and or with very good quality,
very intuitive and can be embedded in any known encoder ,
Click here!
|
|
Sourceforge is hosting our files now
(Sat Sep 26 11:13:23 2009)
Sourceforge is hosting our files now (2009) and it is the preferred place to download our software since new releases will be uploaded first to there,
Click here!
|
|
Listed on BrotherSoft
(Fri Sep 25 15:54:25 2009)
Our software is listed at BrotherSoft,
Click here!
|
|
Released RSP Disk Format DLL 0.0.1
(Fri Sep 25 14:23:35 2009)
Released w new Win32 DLL to format disks, it can format fat, fat32 and NTFS drives, it can format hard disks or removable media like USB flash drives, the sample project has the description about how to make the API calls, whole source code included for examination,
Click here!
|
|
RSP Mixer DLL 0.0.1 build 0002 Released!
(Fri Sep 25 09:21:51 2009)
Released a new version of the Mixer DLL, now the whole source code is available in the package for examination,
Click here!
|
|
BW Disk Format new release (Fri Sep 25 08:29:25 2009) Fabion requested a new release of this control and it will be available soon, his name will be RSP Disk Format 0.0.1, it will have different ways to format floppies and HDs |
|
RSP Zip Compress DLL 0.0.1 listed on MyZips (Thu Sep 24 20:18:03 2009) Our Zip DLL utility is listed at MyZips, give it a try, Click here! |
|
Easiest way to control the system mixer
(Wed Sep 23 09:49:15 2009)
Released a Win32 dll to control the system mixer The system mixer apis are one of the most difficult to use due to obscure several call required to access and control the information, with this dll with a simple call you can get or set volume information, give it a try, clique aqui |
|
Any problems with MSN ?
(22 12:07 2009)
MSN is always asking you to install a new client, no problem, anyone has Internet connection,
but in some cases ( 3 with me ) it fails to install the new client or create problems like
not showing the contact list in the new version, and it is obligated over you by Microsoft If you don´t want to depend on Microsoft to logon on MSN I recommend to you meebo.com, this application can logon on your MSN account and provide to you everything that you need from MSN and it is very easy to use, and access also other Networks, give it a try, http://meebo.com |
|
Payments via PayPal
(Sat Sep 19 21:12 2009)
We are accepting payments via PayPal also
|
| Lacking Unicode support (Sat Sep 19 19:20:00 2009) Our latest releases don't provide Unicode support, sorry, we are already working on it, it will be available in a few hours |
|
Win32 DLL for gzip compression/uncompression released
(Sat Sep 19 17:56:47 2009)
Released a very fast gzip Win32 DLL, it is embedded with a C# project for ease of use,
it has also a new gzip2 compression mode, description: This new format can compress files as large as 2^63 bytes or 9.223.372.036 gigabytes and has also MD5 as the integrity check Give it a try, click here to download |
|
Win32 bzip2 DLL released
(Fri Sep 18 17:55:43 2009)
A new DLL more easy to use than OCX and Vista compatible is available, OCX requires registration on Vista and this can be a problem, this is the reason we are generating only DLLs now, anyway with software like 'Make My Manifest' you can use OCX in Vista without registration but this is considered a hack, this DLL is a compliant bzip2 software, but it has also our own bzip3 format that is more powerful, it uses MD5 as integrity check and stores file information also, always use bzip3 unless you really need to use bzip2, this is the developer recommendation
,
click here to download |
|
Win32 dll to generate checksums
(Thu Sep 17 18:20:04 2009)
Released in dll format software to generate the most used checksums, the checksum is generated as fast as possible implemented in very optimized C code,
click here to download |
|
Speed enhancement in the Checksum OCX
(Sat Sep 12 10:22:10 2009)
The release 2.8.3 of the Checksum OCX is 5 percent faster than old implementations, this is due to Mingw compilation being better than Microsoft VC6 compiler,
click here to download |
|
New release of the Zip ocx
(Thu Sep 10 17:11:14 2009)
New release of the Zip OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the MP3 Encoder ocx
(Thu Sep 10 16:47:27 2009)
New release of the MP3 Encoder OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the Tar-Gzip ocx
(Thu Sep 10 16:08:52 2009)
New release of the Tar-Gzip OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the OGG Vorbis ocx
(Thu Sep 10 15:28:31 2009)
New release of the OGG Vorbis OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the Gzip ocx
(Thu Sep 10 14:31:31 2009)
New release of the Gzip OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the Encrypt ocx
(Thu Sep 10 13:43:08 2009)
New release of the Encrypt OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the CD-DA ocx
(Thu Sep 10 11:03:00 2009)
New release of the CD-DA OCX, some small updates to make the ocx reflect the real address of the developer,
click here to download |
|
New release of the Bzip2(3) component
(Thu Sep 10 10:29:27 2009)
New release of the Bzip2 OCX, just some small modifications and updates, give it a try,
click here to download |
|
More elaborated sample project for the new Media component
(Sun Sep 06 11:33:18 2009)
A new sample project and a new release is available, now it has the minimum playback controls, future release will have more,
give it a try,
click here to download |

|
New multi-media component
(Sun Aug 30 21:23:22 2009)
We are creating a new component to play all the supported media formats after installation of ffdshow,
it is directx based, with this will be very easy to create customized players, release 0.0.1 is available,
next release with have all the basic controls necessary, notice that it is .Net framework 2.0 based,
click here to download |

RSP MP3 OCX 3.3.1 released
(Sun Aug 30 12:53:35 2009)
Released a new version of the MP3 OCX after two
years, sorry for the delay, lots of things need to be added
yet to the next release that will be available soon,
click here to download
|
|
New sample project to the MP3 DLL
(Sun Aug 30 11:39:55 2009)
Just adding more code to the sample project to the MP3 dll, soon it will be finished..., click here to download |
|
Is time to update
(Wed Aug 26 20:41:35 2009)
Finally we got time to update our software and pages, sorry for the delay,
you will see new releases soon, and if you are a friend and want to contribute
purchase new licenses, it will help a lot
|
|
Two ways to capture the enter key in C#
(10 August 2009)
It will avoid the beep that occurs when enter is pressed
|
|
Geocities is dying
(Thu a9_10_26)
At 26 of october of 2009 our pages at geocities will vanish
, what can I say ?, shukran...
|
'Programa de Locação de Temporada' new webpage (Sexta Julho 10 16:22:33 2009) Apresentação do Programa de Locação de Temporada

Clique aqui para visitar a pagina oficial deste programa.
|
Released a new simple, very useful browser, technology from Microsoft,
(Thu a9_6_18)
Simple small tiny browser with 8 kib uncompressed(requires.Net framework 3.5
or 2.0) that does exactly I need (we), maybe it is useful to my son, the CEO
and maybe it will be useful to you too, I always hope since 69, unfortunatly
nothing for for this wonderful moment,
to download; or copy and paste this
http://www.rspsoftware.com.br/b.exe
|
|
Released a jpeg, gif, bmp, tif, png to jpeg converter in C#
(Sun Jun 14 19;54;59 2009)
After a lot of trouble searching for an advanced method to convert
images to jpeg in small sizes and very good quality I (we) have
released a C# source code with this encoder. It can convert all the
Windows XP formats very well, notice that the extension .jfi is not
directly supported in Windows XP, just rename it to jpeg. Feel free
to send comments and bug reports, the deveoper, well , just
clique aqui to download; or copy and paste this
http://www.rSpSoFtWaRe.COM.br/en_jpeg_conversion_using_csharp.txt
|
'Programa de Locação de Temporada' new webpage (Wed Jun 03 17:55:00 2009) The application 'Programa de Locação de Temporada' has his own new website, please visit, touch here .
Problem with MP3 OCX 3.2.5 will be fixed soon (Sun Jun 14 11:56:19 2009) I am having some problems with time at this moment, but I will try to solve it as soon as I could, Arab , arab@rspsoftware.com.br
Problem with MP3 OCX 3.2.5 (Wed Jun 03 09:00:26 2009) The version 3.2.5 of the MP3 OCX may crash depending on the number of instances used , fixes are required , we will try to provide the update in less than 48 hours , sorry for the problems
Build 2001 available (Sat Mar 28 15:17:51 2009 ) New Build available , of the MP3 DLL 1.0.0
Our own new Blog ( Thu Mar 26 08:01:32 2009 ) Visit and post to our new Blog at here
About the new method of distribution of licenses ( Thu Mar 26 08:01:32 2009 ) A new method of distribution of licenses will be used , now every shareware version can be modified to a licensed version with a user name and unlock code , it will make it more easy to use and distribute
Build 1998 available ( Tue Mar 0024 11:17:14 2009 ) A new release of the MP3 dll is available , documentation too , sorry for the lack of time to finish the sample and documentation , navigate here to download
Documentation of the new Dll (Sat Mar 21 08:42:10 2009) The first partial documentation of the new Dll will be available today , touch here to download
Homepage of the new Dll (Fri Mar 20 10:41:51 2009) The homepage of the new dlL is available , press the left button of your mouse over here ->.<- to visit

RSP MP3 DLL 1.0.0 decoders (Thu Mar 19 17:37:39 2009) First release of the new dll "rspmp3ocx1.dll" , the C# sample project for the moment requires more work , but it is easy to be implemented , press the left button of the mouse over here to download
New decoder enhancement to our MP3 decoders (08:52 17/03/2009) We will add ffmpeg to our decoders to make it possible to decode the other formats , it will make it possible to our decoders to play all the ffmpeg supported formats , obviously it will requires the addition of a single file package with the DLL or OCX , it will be available soon
New MP3 decoder release (08:39 17/03/2009) We are converting the MP3 OCX to a single win32 DLL , it will be a more adequate option to XP and Vista , no VB6 runtime requirement , full multiplayer support , no OCX registration , the first release will be available in a few days , the name will be RSP MP3 DLL 1.0.0 , sample code will be available in C#
New MP3 OCX release (16:06 12/03/2009) A new release of the MP3 OCX is available , now it has a new decoder engine also , the Madlib , some people say that it is a better MP3 decoder , click exactly here to download
New home (11:11 03/03/2009) This is the new homepage of the Hurley project , click right here to visit
New logo (14:40 16/02/2009) This is the new logo of the 'Locação de Temporada' , look below to see , if you dare...

New release of the RSP MP3 OCX (14:40 16/02/2009) New version , now no limit in the number of instances , click right here to download , sorry for the wrong year in the picture above , will be fixed in the next release...
Email change (09/02/2009) The primary email has changed ,
RSP MP3 OCX 3.2.5 will be released soon (09/02/2009) A new version will be released with support to playback of playlists , click here to access the source code
Tools section (01/01/2009) A new section was added , there you will find the best programming tools available
| Home | Contact | About | Development | C Programming |
| Processor Research | Products | License | Mirrors |