Nabeel Omer

Results 18 comments of Nabeel Omer

For better integration with windows, use the following code: ``` Go import ( "fmt" "syscall" "unsafe" ) var ( kernel32, _ = syscall.LoadLibrary("kernel32.dll") getModuleHandle, _ = syscall.GetProcAddress(kernel32, "GetModuleHandleW") user32, _...

I'm sure. I was just giving an example. I don't know much about the language, I'm still learning it.

I think I read somewhere that you can call C++ code from Go. If that is true, I can write the code in C++ for windows and you can call...

on windows, every thing will be resolved by using the win32 api because it has functions for all of the things that are issues here.

A better idea would be to force the application to run only with administrative privileges by embedding a manifest.

Care to submit what? A manifest?

``` XML ``` This is a manifest that will force the user to provide administrator credentials and the application will run elevated. Its 100% correct and working (I know that...

What's Up Andy, stopped all development?