File: winmain.c

package info (click to toggle)
unison 2.40.65-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,220 kB
  • sloc: ml: 29,298; objc: 6,745; ansic: 1,384; makefile: 523; sh: 80
file content (10 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
#include <caml/callback.h>
#include <windows.h>

extern char **__argv;

int WINAPI WinMain(HINSTANCE h, HINSTANCE hPrevInstance, 
                   LPSTR lpCmdLine, int nCmdShow) {
  caml_main(__argv);
  return 0;
}