I want to learn SDS programming using vc++6.0.
I am having knowledge on .net.
Could any one suggess me what is the best source to lern SDS using VC++6.0
Thanks,
Kumar.
Code: Select all
#include "stdafx.h"
#define EXPORTING_DLL
#include "ESS.H"
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
return TRUE;
}
void HH()
{
MessageBox( NULL, TEXT("Hello World"), TEXT("In a DLL"), MB_OK);
}Code: Select all
#ifndef INDLL_H
#define INDLL_H
#ifdef EXPORTING_DLL
extern __declspec(dllexport) void HH() ;
#else
extern __declspec(dllimport) void HH() ;
#endif
#endif