winim icon indicating copy to clipboard operation
winim copied to clipboard

Windows API, COM, and CLR Module for Nim

Results 34 winim issues
Sort by recently updated
recently updated
newest added

Hi there, I mapped a bug in my program back to an object in iphlapi.nim not matching the win32 API specification. Here's the correct MIB_TCPROW2 structure: ![image](https://user-images.githubusercontent.com/70683790/183456036-5f607771-794b-4dc1-9129-52f59d6029e6.png) Here's the current...

Hello! This commit will add the .NET/COM Interface `MethodInfo` and the corresponding methods to `inc/mscoree.nim`. __Info:__ The definition was taken from `mscorlib.tlb` The `MethodInfo` Interface contains the following members: ```nim...

Hey, I'm facing a problem similar to [this one](https://github.com/khchen/winim/issues/63). I would like to load a DLL from Nim passing parameters to it's constructor. The C# example is the following: ```...

Hi, I've noticed there some functions missing that I need, such as MsiGetProductInfoW and MsiEnumProductsW, I wanted to use them for enumerating installed software, will you add msi.h functions in...

Hey, I have to admit, I'm not super familiar with winapi programming. But I was thinking about writing a window manager for windows, and wanted to check how complicated that...

with latest winim package, and nim 1.4.6 I got the following error when trying to run the test scripts you have for Excel. I renamed the files, but the code...

Hi, Could you please tell me how to create SolidBrush under GdiPlus? Thanks.

I want to create debian package for this project and it would be nice if you can create release file, so the Debian packaging can auto import new release

Microsoft recently released a tool for generate wrappers of win32 api for any language, would that tool generate better wrappers for Nim? [https://github.com/microsoft/win32metadata](https://github.com/microsoft/win32metadata)

What would it be a `winim/com` minimal example for the OneNote case? It looks like in python; ```python import win32com.client onObj = win32com.client.gencache.EnsureDispatch('OneNote.Application.12') result = onObj.GetHierarchy("",win32com.client.constants.hsNotebooks) print(result) ``` But in...