24 lines
531 B
Plaintext
24 lines
531 B
Plaintext
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
//
|
|
// File: drt.idl
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
[ uuid (abcdefab-abcd-abcd-abcd-abcdefabcdef),
|
|
version(1.0),
|
|
pointer_default(unique)
|
|
]
|
|
interface drtsrv_01
|
|
{
|
|
|
|
void HelloProc(handle_t nBinding,
|
|
[in, string] unsigned char * pszString);
|
|
|
|
void Shutdown(handle_t nBinding);
|
|
|
|
}
|