doomemacs/modules/feature/file-templates/templates/c++-mode/__winmain.cpp

13 lines
229 B
C++
Raw Normal View History

2017-02-11 07:00:31 -05:00
# -*- 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;
}