]> git.proxmox.com Git - rustc.git/blame - vendor/winapi/src/um/ole2.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / vendor / winapi / src / um / ole2.rs
CommitLineData
0bf4aa26
XL
1// Licensed under the Apache License, Version 2.0
2// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
4// All files in the project carrying such notice may not be copied, modified, or distributed
5// except according to those terms.
6use shared::minwindef::LPVOID;
7use shared::windef::HWND;
8use um::oleidl::LPDROPTARGET;
9use um::winnt::HRESULT;
10extern "system" {
11 pub fn OleInitialize(
60c5eb7d 12 pvReserved: LPVOID,
0bf4aa26
XL
13 ) -> HRESULT;
14 pub fn RegisterDragDrop(
15 hwnd: HWND,
16 pDropTarget: LPDROPTARGET,
17 ) -> HRESULT;
18 pub fn RevokeDragDrop(
19 hwnd: HWND,
20 ) -> HRESULT;
21}