You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
474 B
44 lines
474 B
#include "pch.h"
|
|
|
|
#ifdef UPGWIZ4FLOPPY
|
|
|
|
#undef UPGWIZ4FLOPPY
|
|
#include "..\inc\dgdll.h"
|
|
#define UPGWIZ4FLOPPY
|
|
|
|
HINSTANCE g_LocalInst = NULL;
|
|
|
|
OSVERSIONINFOA
|
|
Get_g_OsInfo (
|
|
VOID
|
|
)
|
|
{
|
|
return g_OsInfo;
|
|
}
|
|
|
|
PCTSTR
|
|
Get_g_WinDir (
|
|
VOID
|
|
)
|
|
{
|
|
return g_WinDir;
|
|
}
|
|
|
|
PCTSTR
|
|
Get_g_SystemDir (
|
|
VOID
|
|
)
|
|
{
|
|
return g_SystemDir;
|
|
}
|
|
|
|
HANDLE
|
|
Get_g_hHeap (
|
|
VOID
|
|
)
|
|
{
|
|
return g_hHeap;
|
|
}
|
|
|
|
#endif // UPGWIZ4FLOPPY
|
|
|