Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
// dbghelp_supp.h : supplement header file for dbghelp.dll
|
|
// Author: DLL to Lib version 1.26
|
|
// Date: Thursday, August 29, 2002
|
|
// Description: The declaration of the dbghelp.dll's entry-point function.
|
|
// Prototype: BOOL WINAPI xxx_DllMain(HINSTANCE hinstance, DWORD fdwReason, LPVOID lpvReserved);
|
|
// Parameters:
|
|
// hinstance
|
|
// Handle to current instance of the application. Use AfxGetInstanceHandle()
|
|
// to get the instance handle if your project has MFC support.
|
|
// fdwReason
|
|
// Specifies a flag indicating why the entry-point function is being called.
|
|
// lpvReserved
|
|
// Specifies further aspects of DLL initialization and cleanup. Should always
|
|
// be set to NULL;
|
|
// Comment: Please see the help document for detail information about the entry-point
|
|
// function
|
|
// Homepage: http://www.binary-soft.com
|
|
// Technical Support: support@binary-soft.com
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(D2L_DBGHELP_SUPP_H__66294100_4617_5D23_13FE_283B1AED2B4E__INCLUDED_)
|
|
#define D2L_DBGHELP_SUPP_H__66294100_4617_5D23_13FE_283B1AED2B4E__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
/*This is dbghelp.dll's entry-point function. You should call it to do
|
|
necessary initialization and finalization.*/
|
|
BOOL WINAPI DBGHELP_DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !defined(D2L_DBGHELP_SUPP_H__66294100_4617_5D23_13FE_283B1AED2B4E__INCLUDED_)
|