This should be easy.
Haven't writen a C++ app in over 10 years. Trying to delve back into it.
Will someone be kindley enough to show me a sample Function and Procdure
Name the function AnyFunction that returns and integer.
Name the procedure AnyProcdure
Heres my .h and .cpp
#pragma once
ref class clsHelloWorld
{
public:
clsHelloWorld(void);
};
#include "StdAfx.h"
#include "clsHelloWorld.h"
clsHelloWorld::clsHelloWorld(void)
{
}