The next important thing with Jabber/XMPP Tools should be support for TLS 1.0 connections, mandatory for Google Talk (based on/compatible with Jabber/XMPP).
TLS support will be based on Windows SChannel API.
// Oprogramowanie Roman Ryltsov
The next important thing with Jabber/XMPP Tools should be support for TLS 1.0 connections, mandatory for Google Talk (based on/compatible with Jabber/XMPP).
TLS support will be based on Windows SChannel API.
Summary
Alax.Info Jabber/XMPP Tools is a beginning of a Jabber/XMPP compatible set of automation objects (COM/OLE). The module is started as a simplest Jabber client to be used to send message into Jabber/XMPP network. Initially the module provides three objects:
A feature to modify layer color and style has been added.
Having a new gadget, Magellan eXplorist 600 Europe, I had to check available APIs for the device. Luckily there are a few resources maintained by enthusiasts that reveal some of the details. I have my own contribution, a wizard that allows to strip unnecessary layers from existing detail map file (.IMI).
The values the debug version of CRT memory manager fills memory with.
dbgheap.c:
static unsigned char _bNoMansLandFill = 0xFD;Â Â /* fill no-man’s land with this */
static unsigned char _bDeadLandFill  = 0xDD;  /* fill free objects with this */
static unsigned char _bCleanLandFill = 0xCD;  /* fill new objects with this */
static unsigned char _bAlignLandFill = 0xBD;  /* fill no-man’s land for
aligned routines */
Additionally, debug compilation (optimization turned off?) produces code which uses 0xCC fill to initialize variables on stack and
This is what’s been cooking here for some time and given certain amount of time and intent it is going to be completed to the least usable state.
XML-RPC is a specification to deliver remote procedure calls via XML requests and responses using HTTP connection as a communication channel. Its advantage is it’s quite popular. What I’d like to do is to make a COM proxy (in future stub too) which will accept standard IDispatch compatible calls and translate them into XML-RPC compatible requests.
The thing may look a bit tricky but basically it’s more than halfway done already. COM proxy uses type library information and SAX to prepare XML request and raises COM event for the caller to be able to deliver request, typically using XMLHTTP helper. Received response is parsed back into COM proxy output. A variety of COM-enabled applications are thus given an easy to use XML-RPC capabilities.
The code snippet exports registry key (with values and subkeys) into .reg file format stream. The stream can be memory stream or any other IStream compatible implemetnation.
Visual C++.NET 2003 project: Download