gingerBill
|
1d8c44a98c
|
Fix minor issues with Windows bindings
|
2026-04-02 12:52:17 +01:00 |
|
gingerBill
|
49687069ef
|
Minor formatting improvements
|
2026-01-02 10:14:24 +00:00 |
|
gingerBill
|
111ed21e7e
|
Change usage of i32 to c_int where appropriate
|
2026-01-02 10:02:23 +00:00 |
|
Jeroen van Rijn
|
e1d8ece408
|
core:sys/info: iterate over registry nodes to enumerate GPUs
|
2025-10-10 14:12:59 +02:00 |
|
Karl Zylinski
|
19f0127e55
|
Moved all packages in core, base, vendor, tests and examples to use new #+ file tag syntax.
|
2024-09-14 18:27:49 +02:00 |
|
Thomas la Cour
|
3627a51daf
|
Merge remote-tracking branch 'upstream/master' into sys-windows-2
|
2024-07-12 16:06:48 +02:00 |
|
flysand7
|
6ae47c6f43
|
[sys/windows] Add advapi bindings, process-related functions and context-related stuff
|
2024-07-12 19:21:44 +11:00 |
|
Thomas la Cour
|
465ac74020
|
more windows stuff
|
2024-06-11 18:19:16 +02:00 |
|
gingerBill
|
75c659fa41
|
Change stdcall -> system
|
2024-01-17 17:04:54 +00:00 |
|
gingerBill
|
0b83e3dae5
|
Enforce naming the parameters with builtin.quaternion to reduce confusion
|
2024-01-05 14:29:14 +00:00 |
|
Elusive Porpoise
|
2795f09fa8
|
Add GetStartupInfoW. Rename StartupInfo to StartupInfoW.
|
2023-04-03 22:27:47 -07:00 |
|
hikari
|
a1935bc1f4
|
sys/windows: replace A with W
|
2022-10-10 20:40:41 +03:00 |
|
hikari
|
a728047281
|
sys/windows: add a bunch of stuff
|
2022-10-01 17:12:23 +03:00 |
|
hikari
|
665db0f778
|
sys/windows: add RegSetKeyValueW
|
2022-06-16 22:54:59 +03:00 |
|
hikari
|
592e9afa5f
|
sys/windows: add RegSetValueExW
|
2022-06-03 07:57:21 +03:00 |
|
hikari
|
a2e0373934
|
sys/windows: add registry functions and create winerror.odin
|
2022-06-03 06:44:42 +03:00 |
|
gingerBill
|
d1fc9d3073
|
Add more libraries
|
2022-05-12 13:54:40 +01:00 |
|
gingerBill
|
251da264ed
|
Remove unneeded semicolons from the core library
|
2021-08-31 22:21:13 +01:00 |
|
Jeroen van Rijn
|
5dfff51a40
|
Allow core:sys/windows to build on Windows only
|
2021-07-15 12:13:57 +02:00 |
|
Jeroen van Rijn
|
a1d871360c
|
Add support to core:windows to add/delete users.
main :: proc() {
using fmt;
using windows;
username := "testuser";
password := "testpass";
ok := add_user("", username, password);
fmt.printf("add_user: %v\n", ok);
pi := windows.PROCESS_INFORMATION{};
ok2, path := windows.add_user_profile(username);
fmt.printf("add_user_profile: %v, %v\n", ok2, path);
ok3 := windows.delete_user_profile(username);
fmt.printf("delete_user_profile: %v\n", ok3);
ok4 := windows.delete_user("", username);
fmt.printf("delete_user: %v\n", ok4);
// Has optional bool to not wait on the process before returning.
b := run_as_user(username, password, "C:\\Repro\\repro.exe", "Hellope!", &pi);
fmt.printf("run_as_user: %v %v\n", b, pi);
}
|
2021-04-13 02:09:44 +02:00 |
|
gingerBill
|
6bd05ef5d7
|
Begin migration from sys/win32 to sys/windows
|
2020-06-26 19:11:34 +01:00 |
|