Changeset 19138 in vbox for trunk/src/VBox/Main/cbinding
- Timestamp:
- Apr 23, 2009 9:47:43 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/cbinding/xpcidl.xsl
r19081 r19138 543 543 544 544 struct PRCListStr { 545 PRCList 546 PRCList 545 PRCList *next; 546 PRCList *prev; 547 547 }; 548 548 … … 596 596 PL_GetEventQueueMonitor(PLEventQueue* self); 597 597 598 #define PL_ENTER_EVENT_QUEUE_MONITOR(queue) 599 600 601 #define PL_EXIT_EVENT_QUEUE_MONITOR(queue) 602 598 #define PL_ENTER_EVENT_QUEUE_MONITOR(queue) \ 599 PR_EnterMonitor(PL_GetEventQueueMonitor(queue)) 600 601 #define PL_EXIT_EVENT_QUEUE_MONITOR(queue) \ 602 PR_ExitMonitor(PL_GetEventQueueMonitor(queue)) 603 603 604 604 PR_EXTERN(PRStatus) PL_PostEvent(PLEventQueue* self, PLEvent* event); … … 622 622 PR_EXTERN(void) 623 623 PL_InitEvent(PLEvent* self, void* owner, 624 625 624 PLHandleEventProc handler, 625 PLDestroyEventProc destructor); 626 626 PR_EXTERN(void*) PL_GetEventOwner(PLEvent* self); 627 627 PR_EXTERN(void) PL_HandleEvent(PLEvent* self); … … 631 631 632 632 struct PLEvent { 633 PRCList 634 PLHandleEventProc 635 PLDestroyEventProc 636 void* 637 void* 633 PRCList link; 634 PLHandleEventProc handler; 635 PLDestroyEventProc destructor; 636 void* owner; 637 void* synchronousResult; 638 638 PRLock* lock; 639 639 PRCondVar* condVar;
Note:
See TracChangeset
for help on using the changeset viewer.