17 lines
356 B
Plaintext
17 lines
356 B
Plaintext
|
// Name : Avlis Persistence System OnModuleLoad
|
||
|
// Purpose : Initialize APS on module load event
|
||
|
// Authors : Ingmar Stieger
|
||
|
// Modified : January 27, 2003
|
||
|
|
||
|
// This file is licensed under the terms of the
|
||
|
// GNU GENERAL PUBLIC LICENSE (GPL) Version 2
|
||
|
|
||
|
#include "aps_include"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Init placeholders for ODBC gateway
|
||
|
SQLInit();
|
||
|
}
|
||
|
|