Changeset 33540 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r28800 r33540 615 615 * Here update rectangles are accumulated to form an update area. 616 616 * @todo 617 * Now the simpl iesmethod is used which builds one rectangle that617 * Now the simplest method is used which builds one rectangle that 618 618 * includes all update areas. A bit more advanced method can be 619 619 * employed here. The method should be fast however. … … 964 964 /* Current record is complete. */ 965 965 966 /* The size of largest contiguo s chunk in the ring biffer. */966 /* The size of largest contiguous chunk in the ring biffer. */ 967 967 uint32_t u32BytesTillBoundary = VBVA_RING_BUFFER_SIZE - mpVbvaMemory->off32Data; 968 968 -
trunk/src/VBox/Frontends/VBoxBFE/HGCM.cpp
r28800 r33540 922 922 /** The method creates a service and references it. 923 923 * 924 * @param pszServ cieLibrary The library to be loaded.924 * @param pszServiceLibrary The library to be loaded. 925 925 * @param pszServiceName The name of the service. 926 926 * @return VBox rc. -
trunk/src/VBox/Frontends/VBoxBFE/HGCMThread.cpp
r28800 r33540 98 98 99 99 /* Message queue variables. Messages are inserted at tail of message 100 * queue. They are consumed by worker thread sequent ly. If a message was100 * queue. They are consumed by worker thread sequentially. If a message was 101 101 * consumed, it is removed from message queue. 102 102 */ -
trunk/src/VBox/Frontends/VBoxBFE/HGCMThread.h
r28800 r33540 184 184 185 185 186 /** Worker thread has processed a message previ uosly obtained with hgcmMsgGet.186 /** Worker thread has processed a message previously obtained with hgcmMsgGet. 187 187 * 188 188 * @param pMsg Processed message pointer. -
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r32388 r33540 1399 1399 bi.bV5BitCount = 32; 1400 1400 bi.bV5Compression = BI_BITFIELDS; 1401 // specif iy a supported 32 BPP alpha format for Windows XP1401 // specify a supported 32 BPP alpha format for Windows XP 1402 1402 bi.bV5RedMask = 0x00FF0000; 1403 1403 bi.bV5GreenMask = 0x0000FF00; -
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.h
r32851 r33540 35 35 #include <iprt/string.h> 36 36 37 /** Pointer shape change event data struc ure */37 /** Pointer shape change event data structure */ 38 38 struct PointerShapeChangeData 39 39 { -
trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.cpp
r28800 r33540 398 398 * @param y top row 399 399 * @param w width in pixels 400 * @param h heigh in pixels400 * @param h height in pixels 401 401 */ 402 402 void SDLFramebuffer::update(int x, int y, int w, int h) -
trunk/src/VBox/Frontends/VBoxBFE/USBProxyService.cpp
r28800 r33540 2 2 * 3 3 * VBox frontends: Basic Frontend (BFE): 4 * Implemen ation of USBProxyService class4 * Implementation of USBProxyService class 5 5 */ 6 6 -
trunk/src/VBox/Frontends/VBoxBFE/USBProxyService.h
r28800 r33540 37 37 38 38 /** 39 * A VM is trying to capture a device, do necessary prep erations.39 * A VM is trying to capture a device, do necessary preparations. 40 40 * 41 41 * @returns VBox status code. -
trunk/src/VBox/Frontends/VBoxBFE/USBProxyServiceLinux.cpp
r28800 r33540 592 592 /* 593 593 * Interpret the line. 594 * (Ordered by normal occur ence.)594 * (Ordered by normal occurrence.) 595 595 */ 596 596 char ch = psz[0]; -
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r32388 r33540 1856 1856 /* 1857 1857 * The TAP driver does all the opening and setting up, 1858 * as it was originally was me nt to be (stupid fork() problems).1858 * as it was originally was meant to be (stupid fork() problems). 1859 1859 */ 1860 1860 rc = CFGMR3InsertString(pCfg, "Device", g_aNetDevs[ulInstance].pszName); UPDATE_RC(); -
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFEMain-darwin.m
r16895 r33540 12 12 #import <iprt/assert.h> 13 13 14 /* For some rea on, Apple removed setAppleMenu from the headers in 10.4,14 /* For some reason, Apple removed setAppleMenu from the headers in 10.4, 15 15 but the method still is there and works. To avoid warnings, we declare 16 16 it ourselves here. */ -
trunk/src/VBox/Frontends/VBoxBFE/VirtualBoxBase.h
r30714 r33540 255 255 256 256 /** 257 * Declares an empty constru tor and destructor for the given class.257 * Declares an empty constructor and destructor for the given class. 258 258 * This is useful to prevent the compiler from generating the default 259 259 * ctor and dtor, which in turn allows to use forward class statements … … 271 271 272 272 /** 273 * Defines an empty constru tor and destructor for the given class.273 * Defines an empty constructor and destructor for the given class. 274 274 * See DECLARE_EMPTY_CTOR_DTOR for more info. 275 275 */ … … 326 326 327 327 /** 328 * Virtual unin tialization method. Called during parent object's328 * Virtual uninitialization method. Called during parent object's 329 329 * uninitialization, if the given subclass instance is a dependent child of 330 * a class der vived from VirtualBoxBaseWithChildren (@sa330 * a class derived from VirtualBoxBaseWithChildren (@sa 331 331 * VirtualBoxBaseWithChildren::addDependentChild). In this case, this 332 * method's imp elemtation must call setReady (false),332 * method's implementation must call setReady (false), 333 333 */ 334 334 virtual void uninit() {} … … 355 355 * The constructor, given the VirtualBoxBase pointer, safely acquires the 356 356 * lock protecting its data. This lock will be released automatically 357 * when the instance goes out of scope (block, func iton etc.).357 * when the instance goes out of scope (block, function etc.). 358 358 * 359 359 * @note … … 534 534 * by the context parameter. Additionally, a comment to the source text 535 535 * string text can be given. This comment (which is NULL by default) 536 * is helpful in s utuations where it is necessary to distinguish between536 * is helpful in situations where it is necessary to distinguish between 537 537 * two or more semantically different roles of the same source text in the 538 538 * same context.
Note:
See TracChangeset
for help on using the changeset viewer.