Skip to content

Commit

Permalink
Add APIs based on Adam's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
terrajobst committed Jul 14, 2020
1 parent 95239be commit fd6aba8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions accepted/2020/windows-specific-apis/windows-specific-apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ Windows-specific:
### System.Diagnostics

* **Process**
- `EnterDebugMode()`
- `LeaveDebugMode()`
- `set_MaxWorkingSet(IntPtr)`
- `set_MinWorkingSet(IntPtr)`
- `Start(String, String, SecureString, String)`
Expand Down Expand Up @@ -223,10 +225,14 @@ Windows-specific:
- `ChangeWrapperHandleStrength(Object, Boolean)`
- `CreateAggregatedObject(IntPtr, Object)`
- `CreateAggregatedObject<T>(IntPtr, T)`
- `CreateWrapperOfType(object, Type)`
- `CreateWrapperOfType<T, TWrapper>(T)`
- `FinalReleaseComObject(Object)`
- `GetComInterfaceForObject(Object, Type)`
- `GetComInterfaceForObject(Object, Type, CustomQueryInterfaceMode)`
- `GetComInterfaceForObject<T, TInterface>(T)`
- `GetComObjectData(object,object)`
- `GetIDispatchForObject(object)`
- `GetIUnknownForObject(Object)`
- `GetNativeVariantForObject(Object, IntPtr)`
- `GetNativeVariantForObject<T>(T, IntPtr)`
Expand All @@ -236,18 +242,23 @@ Windows-specific:
- `GetObjectsForNativeVariants(IntPtr, Int32)`
- `GetObjectsForNativeVariants<T>(IntPtr, Int32)`
- `GetStartComSlot(Type)`
- `GetEndComSlot(Type)`
- `GetTypedObjectForIUnknown(IntPtr, Type)`
- `GetTypeFromCLSID(Guid)`
- `GetTypeInfoName(ITypeInfo)`
- `GetUniqueObjectForIUnknown(IntPtr)`
- `QueryInterface(IntPtr, Guid, IntPtr)`
- `Release(IntPtr)`
- `ReleaseComObject(Object)`
- `ReleaseComObject(Object)`
- `SetComObjectData(object,object,object)`

### System.Security.Cryptography

* **CspKeyContainerInfo**
* **DSACryptoServiceProvider**
- `.ctor(CspParameters)`
- `.ctor(int, CspParameters)`
- `get_CspKeyContainerInfo()`
* **PasswordDeriveBytes**
- `CryptDeriveKey(String, String, Int32, Byte[])`
Expand Down

0 comments on commit fd6aba8

Please sign in to comment.