mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:22:57 +00:00

Code reorganization only: put public server apis definitions in a dedicated include to be included in the respective init.c files. svn path=/branches/ros-csrss/; revision=58718
28 lines
703 B
C
28 lines
703 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Base API Server DLL
|
|
* FILE: subsystems/win/basesrv/api.h
|
|
* PURPOSE: Public server APIs definitions
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* dosdev.c */
|
|
VOID BaseInitDefineDosDevice(VOID);
|
|
VOID BaseCleanupDefineDosDevice(VOID);
|
|
|
|
CSR_API(BaseSrvDefineDosDevice);
|
|
|
|
/* proc.c */
|
|
CSR_API(BaseSrvGetTempFile);
|
|
CSR_API(BaseSrvCreateProcess);
|
|
CSR_API(BaseSrvCreateThread);
|
|
CSR_API(BaseSrvExitProcess);
|
|
CSR_API(BaseSrvGetProcessShutdownParam);
|
|
CSR_API(BaseSrvSetProcessShutdownParam);
|
|
|
|
/* sndsntry.c */
|
|
CSR_API(BaseSrvSoundSentryNotification);
|
|
|
|
/* EOF */
|