fpc/tests/webtbs/ub1873.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.