File: xlsx.c

package info (click to toggle)
xlispstat 3.52.14-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 7,560 kB
  • ctags: 12,676
  • sloc: ansic: 91,357; lisp: 21,759; sh: 1,525; makefile: 521; csh: 1
file content (24 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <windows.h>
#include <Windowsx.h>

#ifdef WIN32
BOOL WINAPI DllEntryPoint(HINSTANCE hInst, DWORD reason, LPVOID rsrvd)
#pragma argsused
{
  return TRUE;
}
#else
int FAR PASCAL LibMain(HINSTANCE hInst, WORD wDS, WORD wHS, LPSTR lpszCmd)
#pragma argsused wHS
{
  if (wHS > 0) UnlockData(0);
  return(1);
}

int FAR PASCAL WEP(int nParam)
#pragma argsused
{
  return(1);
}
#endif