/* =============================================================================== *\
 IE    .   -  .
 ,   " "  .   
 ,   "open"   - , 
      "notepad.lnk" -  .  
 "notepad.exe"      system32.   .
\* =============================================================================== */

#include <windows.h>

int WINAPI WinMain(HINSTANCE hInst,HINSTANCE hPrevInst,LPSTR lpszCmdLine,int nCmdShow)
{
  char szExeName[]="<     >";
  char szCmd[1024];
  wsprintf(szCmd,"%s %s",szExeName,lpszCmdLine);
  // CreateProcess -  .
  return WinExec(szCmd,nCmdShow) > 31;
}

/* =============================================================================== *\
  ,    -        *.hpp  *.cpp.
\* =============================================================================== */
