Eswar Yaganti
Eswar Yaganti

Reputation: 2646

What is the Path of the event created in CreateEvent

I am using CreateEvent to create an event in my Windows application. i want to know where under the object manage this event is created. from OSR online i found that it is under \BaseNamedObjects. can anyone confirm this ? i have used ObjDir to see the Event. but it is not under the \BaseNamedObjects.

Upvotes: 1

Views: 676

Answers (1)

David Heffernan
David Heffernan

Reputation: 612993

I guess that you are creating the event in the local session namespace so you'll likely find it in

\Sessions\1\BaseNamedObjects

Assuming that your interactive session is session 1.

\BaseNamedObjects

contains objects created in the global namespace.

Upvotes: 3

Related Questions