2010-05-16 00:56 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbwin/Makefile
- contrib/hbwin/win_srv.c
+ contrib/hbwin/win_svc.c
- contrib/hbwin/tests/testsrv.prg
+ contrib/hbwin/tests/testsvc.prg
* Renamed files ('svc' slightly better describes services
than 'srv' which can be 'server').
This commit is contained in:
@@ -17,6 +17,15 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2010-05-16 00:56 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbwin/Makefile
|
||||
- contrib/hbwin/win_srv.c
|
||||
+ contrib/hbwin/win_svc.c
|
||||
- contrib/hbwin/tests/testsrv.prg
|
||||
+ contrib/hbwin/tests/testsvc.prg
|
||||
* Renamed files ('svc' slightly better describes services
|
||||
than 'srv' which can be 'server').
|
||||
|
||||
2010-05-16 00:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbwin/win_srv.c
|
||||
* contrib/hbwin/tests/testsrv.prg
|
||||
|
||||
@@ -41,7 +41,7 @@ C_SOURCES := \
|
||||
win_prn3.c \
|
||||
win_regc.c \
|
||||
win_shell.c \
|
||||
win_srv.c \
|
||||
win_svc.c \
|
||||
|
||||
PRG_SOURCES := \
|
||||
legacy.prg \
|
||||
|
||||
@@ -131,7 +131,7 @@ HB_FUNC( WIN_SERVICEGETSTATUS )
|
||||
#endif
|
||||
}
|
||||
|
||||
HB_FUNC( WIN_SERVICESETSTATUS ) /* dwStatus */
|
||||
HB_FUNC( WIN_SERVICESETSTATUS )
|
||||
{
|
||||
#if ! defined( HB_OS_WIN_CE )
|
||||
s_ServiceStatus.dwCurrentState = ( DWORD ) hb_parnl( 1 );
|
||||
@@ -141,7 +141,7 @@ HB_FUNC( WIN_SERVICESETSTATUS ) /* dwStatus */
|
||||
#endif
|
||||
}
|
||||
|
||||
HB_FUNC( WIN_SERVICESETEXITCODE ) /* dwExitCode */
|
||||
HB_FUNC( WIN_SERVICESETEXITCODE )
|
||||
{
|
||||
#if ! defined( HB_OS_WIN_CE )
|
||||
s_ServiceStatus.dwWin32ExitCode = ( DWORD ) hb_parnl( 1 );
|
||||
@@ -217,7 +217,7 @@ HB_FUNC( WIN_SERVICEINSTALL )
|
||||
hb_retl( bRetVal );
|
||||
}
|
||||
|
||||
HB_FUNC( WIN_SERVICEDELETE ) /* sServiceName */
|
||||
HB_FUNC( WIN_SERVICEDELETE )
|
||||
{
|
||||
HB_BOOL bRetVal = HB_FALSE;
|
||||
#if ! defined( HB_OS_WIN_CE )
|
||||
@@ -252,7 +252,7 @@ HB_FUNC( WIN_SERVICEDELETE ) /* sServiceName */
|
||||
hb_retl( bRetVal );
|
||||
}
|
||||
|
||||
HB_FUNC( WIN_SERVICESTART ) /* pszServiceName, pszPrgFunction */
|
||||
HB_FUNC( WIN_SERVICESTART )
|
||||
{
|
||||
HB_BOOL bRetVal = HB_FALSE;
|
||||
#if ! defined( HB_OS_WIN_CE )
|
||||
Reference in New Issue
Block a user