VirtualBox

Changeset 469 in vbox for trunk/include/VBox/com/defs.h


Ignore:
Timestamp:
Jan 31, 2007 3:57:59 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
18067
Message:

Main/XIDL: Added support for the @mod attribute (with 'ptr' the only valud value for now) to declare attributes and method parameters as raw C/C++ pointers (which will make the corresponding methods non-scriptable in e.g. XPCOM but avoid 32/64 bit problems with passing pointers over COM).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/com/defs.h

    r1 r469  
    8989#define IUnknown nsISupports
    9090
    91 #define LONG int32_t
    92 #define ULONG uint32_t
    93 #define LONG64 int64_t
    94 #define ULONG64 uint64_t
    95 #define USHORT uint16_t
    96 #define SHORT int16_t
    97 #define BOOL PRBool
     91#define BOOL    PRBool
     92#define BYTE    PRUint8
     93#define SHORT   PRInt16
     94#define USHORT  PRUint16
     95#define LONG    PRInt32
     96#define ULONG   PRUint32
     97#define LONG64  PRInt64
     98#define ULONG64 PRUint64
     99
     100#define BSTR    PRUnichar *
     101#define LPBSTR  BSTR *
     102#define OLECHAR wchar_t
     103
    98104#define FALSE PR_FALSE
    99105#define TRUE PR_TRUE
    100 #define BSTR PRUnichar*
    101 #define LPBSTR BSTR*
    102 #define OLECHAR wchar_t
    103106
    104107// makes the name of the getter interface function (n must be capitalized)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette