Ignore:
Timestamp:
Oct 18, 2001, 11:06:02 PM (24 years ago)
Author:
umoeller
Message:

misc changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/winh.c

    r108 r111  
    7878#include <string.h>
    7979#include <stdio.h>
     80#include <stdarg.h>
    8081
    8182#include "setup.h"                      // code generation and debugging options
     
    28912892
    28922893/*
     2894 *@@ winhSetPresColor:
     2895 *      sets a color presparam. ulIndex specifies
     2896 *      the presparam to be set and would normally
     2897 *      be either PP_BACKGROUNDCOLOR or PP_FOREGROUNDCOLOR.
     2898 *
     2899 *@@added V0.9.16 (2001-10-15) [umoeller]
     2900 */
     2901
     2902BOOL winhSetPresColor(HWND hwnd,
     2903                      ULONG ulIndex,
     2904                      LONG lColor)
     2905{
     2906    return (WinSetPresParam(hwnd,
     2907                            ulIndex,
     2908                            sizeof(LONG),
     2909                            &lColor));
     2910}
     2911
     2912/*
    28932913 *@@category: Helpers\PM helpers\Help (IPF)
    28942914 */
Note: See TracChangeset for help on using the changeset viewer.