You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
531 B
23 lines
531 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// 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);
|
|
|
|
}
|