Ignore:
Timestamp:
Nov 19, 2000, 12:51:48 PM (25 years ago)
Author:
sandervl
Message:

Resynched with Christoph's changes for unicode handling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/CCBase.h

    r3410 r4627  
    1 /* $Id: CCBase.h,v 1.10 2000-04-16 18:52:38 cbratschi Exp $ */
     1/* $Id: CCBase.h,v 1.11 2000-11-19 11:51:47 sandervl Exp $ */
    22/*
    33 * COMCTL32 Base Functions and Macros for all Controls
     
    2323VOID doneControl(HWND hwnd);
    2424
     25
     26#ifdef __cplusplus
     27extern "C" {
     28#endif
     29
    2530LRESULT defComCtl32ProcA(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM lParam);
    2631LRESULT defComCtl32ProcW(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM lParam);
    2732
     33#ifdef __cplusplus
     34}
     35#endif
     36
    2837BOOL isUnicodeNotify(COMCTL32_HEADER *infoPtr);
     38#ifdef __cplusplus
    2939BOOL isUnicodeNotify(HWND hwnd);
     40#endif
    3041
    31 HWND getNotifyWindow(COMCTL32_HEADER *infoPtr);
    3242HWND getNotifyWindow(COMCTL32_HEADER *infoPtr);
    3343
    3444LRESULT sendNotify(HWND hwnd,UINT code);
     45#ifdef __cplusplus
    3546LRESULT sendNotify(HWND hwndFrom,HWND hwndTo,UINT code);
    3647LRESULT sendNotify(HWND hwnd,UINT code,LPNMHDR nmhdr);
    3748LRESULT sendNotify(HWND hwndFrom,HWND hwndTo,UINT code,LPNMHDR nmhdr);
     49#endif
    3850LRESULT sendNotifyFormat(HWND hwnd,HWND hwndFrom,LPARAM command);
    3951LRESULT sendCommand(HWND hwnd,UINT wNotifyCode);
     
    6779#define TICKDIFF(start,end) ((end > start) ? (end-start):(0xFFFFFFFF-start+end))
    6880
     81
    6982#endif
Note: See TracChangeset for help on using the changeset viewer.