Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Example Code in Fortran

kwweber
Principiante
1.976 Vistas
I have been trying to find a working example using the SystemParametersInfo function. I have not been successful. If possible, please provide example code using this function with fortran.
Thank you for your assistance.
0 kudos
3 Respuestas
Jugoslav_Dujic
Colaborador Valioso II
1.976 Vistas

SystemParametersInfo has about 100 usages depending on value of uiAction argument. Which one you're interested about? Some samples were posted at this Forum and youcan find them using Forum's search facility.

Jugoslav

Steven_L_Intel1
Empleados
1.976 Vistas

(Moving this reply from the separate topic it got accidentally put in)

From KWWEBER

Posted: 12-09-2003 10:21 AM (Viewed 8 times)

I am interested in the SPI_GETWORKAREA function. Any example that shows its use in the fortran environment will be helpful
Jugoslav_Dujic
Colaborador Valioso II
1.976 Vistas

USE DFWIN

TYPE(T_RECT):: Rect

INTEGER:: iXRes, iYRes, b

b = SystemParametersInfo(SPI_GETWORKAREA,0,LOC(Rect),0)

iXRes = Rect%Right

iYRes = Rect%Bottom

Jugoslav


					
				
			
			
				
			
			
			
			
			
			
			
		
Responder