Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Add classobject generation. Removed unsafe/safe examples, class files…
Browse files Browse the repository at this point in the history
… and target docs
  • Loading branch information
adrianwithah committed Sep 7, 2019
1 parent 1ad152a commit 201f370
Show file tree
Hide file tree
Showing 44 changed files with 261 additions and 2,119 deletions.
101 changes: 0 additions & 101 deletions docs/com_inproc_dll_module_target.rs

This file was deleted.

99 changes: 0 additions & 99 deletions docs/iclassfactory_target.rs

This file was deleted.

110 changes: 0 additions & 110 deletions docs/iunknown_target.rs

This file was deleted.

10 changes: 4 additions & 6 deletions examples/aggregation/server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
use interface::{CLSID_LOCAL_FILE_MANAGER_CLASS, CLSID_WINDOWS_FILE_MANAGER_CLASS};

mod local_file_manager;
mod local_file_manager_class;
mod windows_file_manager;
mod windows_file_manager_class;

use local_file_manager_class::LocalFileManagerClass;
use windows_file_manager_class::WindowsFileManagerClass;
use local_file_manager::LocalFileManager;
use windows_file_manager::WindowsFileManager;

com::com_inproc_dll_module![
(CLSID_WINDOWS_FILE_MANAGER_CLASS, WindowsFileManagerClass),
(CLSID_LOCAL_FILE_MANAGER_CLASS, LocalFileManagerClass)
(CLSID_WINDOWS_FILE_MANAGER_CLASS, WindowsFileManager),
(CLSID_LOCAL_FILE_MANAGER_CLASS, LocalFileManager)
];
Loading

0 comments on commit 201f370

Please sign in to comment.