home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- // Copyright (C) 1993, Microsoft Corporation
- //
- // You have a royalty-free right to use, modify, reproduce and distribute
- // the Sample Custom Control Files (and/or any modified version) in any way
- // you find useful, provided that you agree that Microsoft has no warranty,
- // obligation or liability for any Custom Control File.
- //---------------------------------------------------------------------------
- // gener.rc
- //---------------------------------------------------------------------------
-
- #include <windows.h>
- #include "genfun.h"
-
- int FAR PASCAL GenStrlen(LPSTR lpString)
- {
- int i = 0;
-
- while (*(lpString++))
- i++;
-
- return (i);
- }
-
-