added wxGetFullModuleName(); use it instead of calling ::GetModuleFileName() directly
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29441 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -46,6 +46,11 @@ static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440));
|
||||
static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72);
|
||||
static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72));
|
||||
|
||||
// 260 was taken from windef.h
|
||||
#ifndef MAX_PATH
|
||||
#define MAX_PATH 260
|
||||
#endif
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// standard icons from the resources
|
||||
// ---------------------------------------------------------------------------
|
||||
@@ -503,6 +508,23 @@ extern "C"
|
||||
|
||||
WXDLLIMPEXP_BASE void wxSetInstance(HINSTANCE hInst);
|
||||
|
||||
// return the full name of the program file
|
||||
inline wxString wxGetFullModuleName()
|
||||
{
|
||||
wxString fullname;
|
||||
if ( !::GetModuleFileName
|
||||
(
|
||||
(HMODULE)wxGetInstance(),
|
||||
wxStringBuffer(fullname, MAX_PATH),
|
||||
MAX_PATH
|
||||
) )
|
||||
{
|
||||
wxLogLastError(_T("GetModuleFileName"));
|
||||
}
|
||||
|
||||
return fullname;
|
||||
}
|
||||
|
||||
#if wxUSE_GUI
|
||||
|
||||
// cursor stuff
|
||||
|
Reference in New Issue
Block a user