Ignore:
Timestamp:
Sep 3, 2002, 8:17:46 PM (23 years ago)
Author:
umoeller
Message:

Minor adjustments for new static handling.

File:
1 edited

Legend:

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

    r184 r222  
    308308 */
    309309
    310 static void spanFree(PSHPSPAN pSpan)
     310STATIC void spanFree(PSHPSPAN pSpan)
    311311{
    312312    if (pSpan != NULL)
     
    319319 */
    320320
    321 static PSHPSPAN spanCreate(void)
     321STATIC PSHPSPAN spanCreate(void)
    322322{
    323323    PSHPSPAN pSpan;
     
    342342 */
    343343
    344 static PSHPSPAN spanExpand(PSHPSPAN pOld)
     344STATIC PSHPSPAN spanExpand(PSHPSPAN pOld)
    345345{
    346346    PSHPSPAN pNew;
     
    369369 */
    370370
    371 static PSHPSPAN spanAppend(PSHPSPAN pSpan,
     371STATIC PSHPSPAN spanAppend(PSHPSPAN pSpan,
    372372                           int y,       // bottom y; top y = y+1
    373373                           int x1,      // left x
     
    497497 */
    498498
    499 static void shprgnDraw(HPS hps, PSHPREGION pRgn)
     499STATIC void shprgnDraw(HPS hps, PSHPREGION pRgn)
    500500{
    501501    POINTL      apt[3];
     
    518518 */
    519519
    520 static MRESULT EXPENTRY shp_fnwpShapeRegion(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
     520STATIC MRESULT EXPENTRY shp_fnwpShapeRegion(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    521521{
    522522    PSHPREGION   pRgn;
     
    591591 */
    592592
    593 static int shpmgrWMAdjustWindowPos(PSHPWINCTLDATA pCtrl, PSWP pSwp)
     593STATIC int shpmgrWMAdjustWindowPos(PSHPWINCTLDATA pCtrl, PSWP pSwp)
    594594{
    595595    int         i   ;
     
    658658 */
    659659
    660 static int shpmgrUpdateRegions(PSHPWINCTLDATA pCtrl, PRECTL pRect)
     660STATIC int shpmgrUpdateRegions(PSHPWINCTLDATA pCtrl, PRECTL pRect)
    661661{
    662662    RECTL       rect, intern;
     
    706706 */
    707707
    708 static PSHPSPAN shpmgrParseBitmap(HPS hps, PBITMAPINFOHEADER2 bmih2)
     708STATIC PSHPSPAN shpmgrParseBitmap(HPS hps, PBITMAPINFOHEADER2 bmih2)
    709709{
    710710    int             blen, hlen;
     
    820820 */
    821821
    822 static int shpmgrWMCreate_Bitmap2Regions(PSHPWINCTLDATA pCtrl,  // in: shape control data
     822STATIC int shpmgrWMCreate_Bitmap2Regions(PSHPWINCTLDATA pCtrl,  // in: shape control data
    823823                                         HPS hpsMask)      // in: HPS with selected bitmap
    824824{
     
    942942 */
    943943
    944 static int shpmgrWMCreate_Regions2Windows(PSHPWINCTLDATA pCtrl)
     944STATIC int shpmgrWMCreate_Regions2Windows(PSHPWINCTLDATA pCtrl)
    945945{
    946946    int         i   ;
     
    10111011 */
    10121012
    1013 static int shpmgrFreeRegion(PSHPWINCTLDATA pCtrl)
     1013STATIC int shpmgrFreeRegion(PSHPWINCTLDATA pCtrl)
    10141014{
    10151015    int         i   ;
     
    10411041 */
    10421042
    1043 static PSHPWINCTLDATA shpmgrWMCreate(HWND hwnd, // in: shape window
     1043STATIC PSHPWINCTLDATA shpmgrWMCreate(HWND hwnd, // in: shape window
    10441044                                     PCREATESTRUCT pWin,    // in: create struct of WM_CREATE
    10451045                                     PSHPCTLDATA pData)       // in: SHPCTLDATA struct (WM_CREATE mp1)
     
    10951095 */
    10961096
    1097 static void shpmgrWMDestroy(PSHPWINCTLDATA pCtrl)
     1097STATIC void shpmgrWMDestroy(PSHPWINCTLDATA pCtrl)
    10981098{
    10991099    if (pCtrl == NULL)
     
    11451145 */
    11461146
    1147 static MRESULT EXPENTRY shp_fnwpShapeMgr(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
     1147STATIC MRESULT EXPENTRY shp_fnwpShapeMgr(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    11481148{
    11491149    PSHPWINCTLDATA   pCtrl;
Note: See TracChangeset for help on using the changeset viewer.