Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: remoting/host/win/core.cc

Issue 12390060: RdpDesktopSession COM class should only use raw interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/host/win/chromoting_lib_idl.templ ('k') | remoting/host/win/rdp_desktop_session.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <windows.h> 5 #include <windows.h>
6 6
7 // PsDllMain is the entry point of the proxy/stub code generated by MIDL.
8 extern "C" BOOL WINAPI PsDllMain(HINSTANCE instance,
9 DWORD reason,
10 void* reserved);
11
7 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void* reserved) { 12 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void* reserved) {
8 if (reason == DLL_PROCESS_ATTACH) 13 if (reason == DLL_PROCESS_ATTACH)
9 DisableThreadLibraryCalls(instance); 14 DisableThreadLibraryCalls(instance);
10 15
11 return TRUE; 16 // Initialize the proxy/stub code as well.
17 return PsDllMain(instance, reason, reserved);
12 } 18 }
OLDNEW
« no previous file with comments | « remoting/host/win/chromoting_lib_idl.templ ('k') | remoting/host/win/rdp_desktop_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698