Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

windows: add builderv2 support #29

Merged
merged 2 commits into from
Mar 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .qubesbuilder
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ vm:
archlinux:
build:
- archlinux
windows:
build:
- dummy
inc:
- include/qubes-gui-protocol.h
- include/qubes-xorg-tray-defs.h
9 changes: 4 additions & 5 deletions include/qubes-gui-protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,12 @@
* can safely unmap a window's grants
*/


#ifdef WINNT
typedef unsigned __int32 uint32_t;
#ifdef _WIN32
// TODO: fix properly for Windows
#define __attribute__(x)
#endif
#ifndef WINNT

#include <stdint.h>
#endif
/* version of protocol described in this file, used as gui-daemon protocol
* version; specific agent defines own version which them support */
#define QUBES_GUID_PROTOCOL_VERSION_MAJOR 1
Expand Down