mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
20 lines
339 B
ObjectPascal
20 lines
339 B
ObjectPascal
{$mode delphi}
|
|
unit ub1873;
|
|
|
|
interface
|
|
|
|
uses Windows;
|
|
|
|
const
|
|
advapi32 = 'advapi32.dll';
|
|
|
|
|
|
function GetServiceDisplayNameA(hSCManager: SC_HANDLE; lpServiceName: LPCSTR;
|
|
lpDisplayName: LPSTR; var lpcchBuffer: DWORD): BOOL; stdcall;
|
|
|
|
implementation
|
|
|
|
function GetServiceDisplayNameA; external advapi32 name 'GetServiceDisplayNameA';
|
|
|
|
end.
|