Ignore:
Timestamp:
Jun 18, 1999, 12:06:10 AM (26 years ago)
Author:
phaller
Message:

Fix: Source beautification + HandleManager support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/wprocess.cpp

    r112 r115  
    1 /* $Id: wprocess.cpp,v 1.7 1999-06-17 18:25:22 phaller Exp $ */
     1/* $Id: wprocess.cpp,v 1.8 1999-06-17 22:06:10 phaller Exp $ */
    22
    33/*
     
    582582//******************************************************************************
    583583//******************************************************************************
     584
     585
     586/***********************************************************************
     587 *           RegisterServiceProcess             (KERNEL, KERNEL32)
     588 *
     589 * A service process calls this function to ensure that it continues to run
     590 * even after a user logged off.
     591 */
     592DWORD WIN32API RegisterServiceProcess(DWORD dwProcessId,
     593                                      DWORD dwType)
     594{
     595  dprintf(("KERNEL32: RegisterServiceProcess(%08xh,%08xh) not implemented.\n",
     596           dwProcessId,
     597           dwType));
     598
     599  /* I don't think that Wine needs to do anything in that function */
     600  return 1; /* success */
     601}
     602
Note: See TracChangeset for help on using the changeset viewer.