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

Side by Side Diff: app/win/hwnd_util.h

Issue 6019007: Remove win_util::FormatMessage and FormatLastWin32Error. These were only used... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 12 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 | « app/app_base.gypi ('k') | app/win/hwnd_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 #ifndef APP_WIN_HWND_UTIL_H_
6 #define APP_WIN_HWND_UTIL_H_
7 #pragma once
8
9 #include <windows.h>
10
11 #include "base/string16.h"
12
13 namespace app {
14 namespace win {
15
16 // A version of the GetClassNameW API that returns the class name in an
17 // string16. An empty result indicates a failure to get the class name.
18 string16 GetClassName(HWND hwnd);
19
20 // Useful for subclassing a HWND. Returns the previous window procedure.
21 WNDPROC SetWindowProc(HWND hwnd, WNDPROC wndproc);
22
23 // Pointer-friendly wrappers around Get/SetWindowLong(..., GWLP_USERDATA, ...)
24 // Returns the previously set value.
25 void* SetWindowUserData(HWND hwnd, void* user_data);
26 void* GetWindowUserData(HWND hwnd);
27
28 } // namespace win
29 } // namespace app
30
31 #endif // APP_WIN_HWND_UTIL_H_
OLDNEW
« no previous file with comments | « app/app_base.gypi ('k') | app/win/hwnd_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698