38 lines
1019 B
C++
38 lines
1019 B
C++
#include "StdAfx.h"
|
|
|
|
#include "WAW_Main.hpp"
|
|
#include "WAW_Strg.hpp"
|
|
|
|
#include "ErO.h"
|
|
|
|
static AFX_EXTENSION_MODULE NEAR extensionDLL = { NULL, NULL };
|
|
|
|
|
|
//*** Global variables **************************
|
|
// The WAW Module
|
|
HMODULE WAW_g_hModule = 0;
|
|
|
|
extern WAW_MainDialog * WAW_g_pclWatchWindow;
|
|
|
|
|
|
//========================================================================
|
|
// Get current CPA version
|
|
//========================================================================
|
|
|
|
void __declspec(dllexport) WAW_fn_vInitModule( HMODULE _hModule )
|
|
{
|
|
WAW_g_hModule = _hModule;
|
|
|
|
//Register module for ErO
|
|
ERROR_g_fn_vAddAModuleDescriptor( WAW_g_C_csModuleNameForError,
|
|
WAW_g_C_csModuleVersion,
|
|
"David REIZER",
|
|
"01 48 18 53 74 (Montreuil)",
|
|
"dreizer@ubisoft.fr",
|
|
"Daniel PALIX",
|
|
"04 50 51 26 63 (Annecy)",
|
|
"dpalix@ubisoft.fr",
|
|
"",
|
|
"",
|
|
"" );
|
|
} |