
#include "dfc.hpp"

int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int ) {

  createFrameSample();

  MSG msg;
  while (::GetMessage( &msg, 0, 0, 0 ) > 0) {
    ::TranslateMessage( &msg );
    ::DispatchMessage( &msg );
  }

  return 0;
}

