Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
67a7a8a8
Commit
67a7a8a8
authored
Apr 27, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Apr 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Fix two comments about the running object table.
parent
2db311a8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
moniker.c
dlls/ole32/moniker.c
+3
-8
No files found.
dlls/ole32/moniker.c
View file @
67a7a8a8
...
@@ -19,11 +19,6 @@
...
@@ -19,11 +19,6 @@
* You should have received a copy of the GNU Lesser General Public
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
* TODO:
* - IRunningObjectTable should work interprocess, but currently doesn't.
* Native (on Win2k at least) uses an undocumented RPC interface, IROT, to
* communicate with RPCSS which contains the table of marshalled data.
*/
*/
#include <stdarg.h>
#include <stdarg.h>
...
@@ -974,9 +969,9 @@ HRESULT WINAPI RunningObjectTableImpl_Initialize(void)
...
@@ -974,9 +969,9 @@ HRESULT WINAPI RunningObjectTableImpl_Initialize(void)
/* initialize the virtual table function */
/* initialize the virtual table function */
runningObjectTableInstance
->
lpVtbl
=
&
VT_RunningObjectTableImpl
;
runningObjectTableInstance
->
lpVtbl
=
&
VT_RunningObjectTableImpl
;
/* the initial reference is set to "1"
! because if set to "0" it will be not practis when */
/* the initial reference is set to "1"
so that it isn't destroyed after its
/* the ROT referred many times not in the same time (all the objects in the ROT will */
* first use until the process is destroyed, as the running object table is
/* be removed every time the ROT is removed )
*/
* a process-wide cache of a global table
*/
runningObjectTableInstance
->
ref
=
1
;
runningObjectTableInstance
->
ref
=
1
;
list_init
(
&
runningObjectTableInstance
->
rot
);
list_init
(
&
runningObjectTableInstance
->
rot
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment