doomemacs/private/templates/c++-mode/@@winmain.cpp
2015-09-28 19:26:43 -04:00

12 lines
229 B
C++

# -*- mode: snippet -*-
# group: file templates
# contributor: Henrik Lissner
# --
#include <Windows.h>
int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
$0
return 0;
}