VBoxGuest.mac revision ee83d548adae5c628ab0799ceae14ad7895a0590
;; @file
; VBoxGuest - VirtualBox Guest Additions Interface, NASM/YASM header.
;
;/*
; Copyright (C) 2006-2007 innotek GmbH
;
; This file is part of VirtualBox Open Source Edition (OSE), as
; available from http://www.virtualbox.org. This file is free software;
; you can redistribute it and/or modify it under the terms of the GNU
; General Public License as published by the Free Software Foundation,
; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
; distribution. VirtualBox OSE is distributed in the hope that it will
; be useful, but WITHOUT ANY WARRANTY of any kind.
; */
%ifndef ___VBox_VBoxGuest_mac___
%define ___VBox_VBoxGuest_mac___
%define VMMDEV_VERSION_MAJOR 1
%define VMMDEV_VERSION_MINOR 4
%define VMMDEV_VERSION 000010004h
%ifdef RT_OS_OS2
%define VBOXGUEST_DEVICE_NAME "vboxgst$"
;; aka VBOXGUESTOS2IDCCONNECT
struc VBGOS2IDC
.u32Version resd 1
.u32Session resd 1
.pfnServiceEP resd 1
.fpfnServiceEP resd 1
.fpfnServiceAsmEP resd 1
endstruc
%endif ; RT_OS_OS2
%endif