Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3450e00 authored by Emil Velikov's avatar Emil Velikov
Browse files

drm/vmwgfx: add extern C guard for the UAPI header



Cc: Thomas Hellstrom <thellstrom@vmware.com>
Cc: Brian Paul <brianp@vmware.com>
Signed-off-by: default avatarEmil Velikov <emil.l.velikov@gmail.com>
Acked-by: default avatarSinclair Yeh <syeh@vmware.com>
parent 38180815
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -30,6 +30,10 @@

#include "drm.h"

#if defined(__cplusplus)
extern "C" {
#endif

#define DRM_VMW_MAX_SURFACE_FACES 6
#define DRM_VMW_MAX_MIP_LEVELS 24

@@ -1087,4 +1091,9 @@ union drm_vmw_extended_context_arg {
	enum drm_vmw_extended_context req;
	struct drm_vmw_context_arg rep;
};

#if defined(__cplusplus)
}
#endif

#endif