functionalscript 0.0.411 → 0.0.412
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +2 -2
- package/Cargo.toml +2 -2
- package/com/rust/{com → nanocom}/Cargo.lock +0 -0
- package/com/rust/{com → nanocom}/Cargo.toml +3 -1
- package/com/rust/nanocom/README.md +3 -0
- package/com/rust/{com → nanocom}/rstest/Cargo.lock +0 -0
- package/com/rust/{com → nanocom}/rstest/Cargo.toml +1 -1
- package/com/rust/{com → nanocom}/rstest/src/lib.rs +3 -3
- package/com/rust/{com → nanocom}/src/class.rs +0 -0
- package/com/rust/{com → nanocom}/src/cobject.rs +0 -0
- package/com/rust/{com → nanocom}/src/guid.rs +0 -0
- package/com/rust/{com → nanocom}/src/hresult.rs +0 -0
- package/com/rust/{com → nanocom}/src/interface.rs +0 -0
- package/com/rust/{com → nanocom}/src/iunknown.rs +0 -0
- package/com/rust/{com → nanocom}/src/iunknownvmt.rs +0 -0
- package/com/rust/{com → nanocom}/src/lib.rs +0 -0
- package/com/rust/{com → nanocom}/src/object.rs +0 -0
- package/com/rust/{com → nanocom}/src/ref.rs +0 -0
- package/com/rust/{com → nanocom}/src/vmt.rs +0 -0
- package/package.json +1 -1
package/Cargo.lock
CHANGED
package/Cargo.toml
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -3,7 +3,7 @@ mod test {
|
|
|
3
3
|
// interface definition:
|
|
4
4
|
|
|
5
5
|
mod library {
|
|
6
|
-
use
|
|
6
|
+
use nanocom::{CObject, Class, Interface, Object, Ref, GUID};
|
|
7
7
|
|
|
8
8
|
#[allow(non_snake_case)]
|
|
9
9
|
#[repr(C)]
|
|
@@ -62,7 +62,7 @@ mod test {
|
|
|
62
62
|
|
|
63
63
|
// interface implementation
|
|
64
64
|
mod x {
|
|
65
|
-
use
|
|
65
|
+
use nanocom::{CObject, Class, Ref, Vmt};
|
|
66
66
|
|
|
67
67
|
use super::library::{IMy, IMyEx, IMyVmt};
|
|
68
68
|
|
|
@@ -91,7 +91,7 @@ mod test {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
mod using {
|
|
94
|
-
use
|
|
94
|
+
use nanocom::Class;
|
|
95
95
|
|
|
96
96
|
use crate::test::{library::IMyEx, x::X};
|
|
97
97
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|