mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 23:48:12 +00:00
13 lines
198 B
C
13 lines
198 B
C
|
|
#ifndef __INTERNAL_SERVICE_H
|
|
#define __INTERNAL_SERVICE_H
|
|
|
|
|
|
typedef struct _SERVICE_TABLE
|
|
{
|
|
unsigned long ParametersSize;
|
|
unsigned long Function;
|
|
} SERVICE_TABLE, *PSERVICE_TABLE;
|
|
|
|
#endif
|
|
|