Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include <windows.h> | |
| 6 | |
| 7 #include <cfgmgr32.h> | |
| 8 #include <shellapi.h> | |
| 9 | |
| 10 extern "C" { | |
| 11 | |
| 12 __declspec(dllexport) void ExportFunc1() { | |
| 13 // Call into user32.dll. | |
| 14 HWND dummy = GetDesktopWindow(); | |
| 15 SetWindowTextA(dummy, "dummy"); | |
| 16 } | |
| 17 | |
| 18 __declspec(dllexport) void ExportFunc2() { | |
| 19 // Call into cfgmgr32.dll. | |
| 20 CM_MapCrToWin32Err(CR_SUCCESS, ERROR_SUCCESS); | |
| 21 SHFILEOPSTRUCT file_operation = {0}; | |
| 22 // Call into shell32.dll. | |
|
rvargas (doing something else)
2015/02/24 20:03:22
nit: add empty line before this one (and @24)
Will Harris
2015/02/24 20:46:54
Done.
| |
| 23 SHFileOperation(&file_operation); | |
| 24 // Call into kernel32.dll. | |
| 25 HANDLE h = CreateEvent(NULL, FALSE, FALSE, NULL); | |
| 26 CloseHandle(h); | |
| 27 } | |
| 28 | |
| 29 } // extern "C" | |
| OLD | NEW |