This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add classobject generation. Removed unsafe/safe examples, class files…
… and target docs
- Loading branch information
adrianwithah
committed
Sep 7, 2019
1 parent
1ad152a
commit 201f370
Showing
44 changed files
with
261 additions
and
2,119 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
]; |
Oops, something went wrong.