Leaked source code of windows server 2003
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.
|
|
//+--------------------------------------------------------------------------- // // Microsoft Windows // Copyright (c) Microsoft Corporation. All rights reserved. // // File: ocidl.acf // //----------------------------------------------------------------------------
interface IOleControlTypes { #if _MIDL_USER_MARSHAL_DISABLED typedef [represent_as(HWND)] UserHWND; typedef [represent_as(HACCEL)] UserHACCEL; typedef [represent_as(HDC)] UserHDC; typedef [represent_as(HFONT)] UserHFONT; typedef [represent_as(MSG)] UserMSG; typedef [represent_as(BSTR)] UserBSTR; typedef [represent_as(VARIANT)] UserVARIANT; typedef [represent_as(EXCEPINFO)] UserEXCEPINFO; #endif // _MIDL_USER_MARSHAL_DISABLED }
|