Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Blinker 5.10 Online Reference - <b> blidemdte() / blidemdtebas()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 BLIDEMDTE() / BLIDEMDTEBAS()
------------------------------------------------------------------------------
 Purpose:
 Get demonstration date limit if set.

 Syntax:
 cDemoDate = BLIDEMDTE()

 Parameters:
 None.

 Returns:
 Demonstration date string.

 Description:
 This function returns the demonstration date limit of the program if it was
 set at link time, and returns it as a string in the form YYYYMMDD.

 A null string (zero length) will be returned if the demonstration date limit
 has not been set.
 This function is currently only supported for DOS and DOS extended programs,
 not for Windows programs.

 Example:
 #include <stdio.h>                                                          
 #include <blinker.h>                                                        
                                                                             
 void main(void)                                                             
 {                                                                           
 char demodate [9];                                                          
 strcpy (demodate,BLIDEMDTE());                                              
 if (strlen(demodate) > 0)                                                   
    printf (This program will expire on %s\n",demodate);                     
 }                                                                           

See Also: BLIDEMMIN() BLINKER DEMONSTRATION DATE

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson