2024-07-31 14:14:38 +08:00
|
|
|
namespace YYCC::WinFctHelper {
|
2024-07-13 12:58:49 +08:00
|
|
|
/**
|
|
|
|
|
|
|
|
\page win_fct_helper Windows Function Helper
|
|
|
|
|
|
|
|
This helper give a more convenient way to call Windows functions.
|
|
|
|
|
|
|
|
This namespace is Windows specific.
|
|
|
|
It will be entirely invisible in other platforms.
|
|
|
|
|
|
|
|
Currently this namespace has following functions:
|
|
|
|
|
2024-07-31 14:14:38 +08:00
|
|
|
\li #GetCurrentModule: Get the handle to current module.
|
|
|
|
\li #GetTempDirectory: Get temporary directory in Windows.
|
|
|
|
\li #GetModuleFileName: Get the path to module in file system by given handle.
|
|
|
|
\li #GetLocalAppData: Get the path inside \%LOCALAPPDATA\%
|
2024-07-13 12:58:49 +08:00
|
|
|
|
2024-07-31 14:14:38 +08:00
|
|
|
*/
|
|
|
|
}
|