- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hallo everyone,
I have a question. I want to use Fortran to call 2 WINDOWS API which are named CreateFileMapping() and MapViewOfFile(). If it is possible and how can i do it?
I have a question. I want to use Fortran to call 2 WINDOWS API which are named CreateFileMapping() and MapViewOfFile(). If it is possible and how can i do it?
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
To use those functions, you must include their interfaces in your code using USE IFWIN which itself USEs all the required modules for all supported Windows API functions (the object files for the two functions reside in KERNEL32.LIB) and you need to include USE IFWINTY to gain access to the flags that those two functions utilise.
I have no examples of the use of the functions mentioned, sorry. Search the Help using the function names to find out details of their arguments.
I have no examples of the use of the functions mentioned, sorry. Search the Help using the function names to find out details of their arguments.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The module IFWINTY is "ued" by any module that is "used" by IFWIN, so there is no need to set a separate use statement for the module IFWINTY once you use the module IFWIN.
Robert
Robert

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page