Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
467 B

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. int
  4. miscParseGeometry( char *Geometry,
  5. int *x,
  6. int *y,
  7. int *Width,
  8. int *Height
  9. )
  10. {
  11. int Scanned = 0;
  12. if ( NULL != Geometry )
  13. {
  14. Scanned = sscanf( Geometry, "%ix%i+%i+%i", Width, Height, x, y );
  15. }
  16. return( Scanned );
  17. }
  18. char *
  19. miscGetGeometryHelpString( void )
  20. {
  21. return( "WidthxHeight+Left+Top" );
  22. }