add launchctl project

This commit is contained in:
Bill Zissimopoulos
2016-05-11 16:02:56 -07:00
parent 1a14971911
commit 9ae28a5529
5 changed files with 257 additions and 5 deletions

30
src/launcher/launchctl.c Normal file
View File

@ -0,0 +1,30 @@
/**
* @file launcher/launchctl.c
*
* @copyright 2015-2016 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
*
* You can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* Licensees holding a valid commercial license may use this file in
* accordance with the commercial license agreement provided with the
* software.
*/
#include <launcher/launcher.h>
#define PROGNAME "launchctl"
int wmain(int argc, wchar_t **argv)
{
return 0;
}
int wmainCRTStartup(void)
{
return wmain(0, 0);
}

View File

@ -1,5 +1,5 @@
/**
* @file launcher.c
* @file launcher/launcher.c
*
* @copyright 2015-2016 Bill Zissimopoulos
*/