Great job! </sarcasm>. When making tutorials, including a source for an example program is usually a good idea. And just so you know, Windows isn't the only OS in the world. And C++ is not only used on Windows. What you're using is VC++.NET which is Windows only.
"Ok first things first C++ is not the easiest language out there so you might want to know a little about the structure and format of a C++ program." Bawahahaa. When introducing the C++, you might want to start on a simple command line application. Many of you should be familiar with the following:
Code: Select all
#include <stdio.h>
int main(int* argc, char* argv[])
{
printf("Hello world!\n");
return 0;
}
Also, you seem to read MetaSize and MetaOffset the wrong way arround. I think that MetaOffset is before MetaSize in the IndexItem struct (Or H2Tag as you call it). You might want to check out my docs on the map structs that I started to gather up, because I couldn't find any on the internet. You can find my docs from
http://koti.welho.com/plahtin6/files/h2mapformat.xml. They're mostly gathered from Ch2r and libhalo2, and they might contain wrong information. If someone spots something that is not correct in the docs, please let me know.
And by the way, MetaSize and MetaOffset are only 4 bytes (32 bit) long each, so you don't need 8 byte (64 bit) variables for them (Int64), but instead you should use unsigned int (uint32, defined: typedef unsigned int uint32; ).
Also, correct punctuation would be nice.

.
r4nd0m wrote:I had the very same problem with my clients, i could make and run the application fine, but when i gave it out to people they got that very same error. It all boiled down to that they didnt have C++ installed. ON installing C++ you get dll's which allow you to run these applications.
this gives a bit of info on the subject
http://msdn2.microsoft.com/en-us/library/ms235291.aspx
C++ is a programming language. Are you reffering to .NET runtime libraries perhaps? Visual C++ might also need some runtime libraries.