//--------------------------------------------------------------------------- #ifndef StartUpH #define StartUpH #include // Registry¿¡ ½ÃÀÛÇÁ·Î±×·¥À¸·Î µî·ÏÇÑ´Ù. // exam : ResigterStartUp("Project1", false, "c:\test\Project1.exe"); // ¼º°øÇÒ °æ¿ì 0À» ¹ÝȯÇÑ´Ù. HRESULT RegisterStartUp(const char *pTitle, bool bRunOnce = false, const char *pCmdLine = NULL); // Registry¿¡ ½ÃÀÛÇÁ·Î±×·¥À¸·Î µî·ÏµÈ ºÎºÐ(pTitle)À» »èÁ¦ÇÑ´Ù. // exam : ResigterStartUp("Project1", false); // ¼º°øÇÒ °æ¿ì 0À» ¹ÝȯÇÑ´Ù. HRESULT UnregisterStartUp(const char *pTitle, bool bRunOnce = false); //--------------------------------------------------------------------------- #endif